X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=support%2Fnfs%2Fxio.c;h=221cce6ef2babdf35d96330e6399dd5d35679a3f;hb=f9cfe7c8a02ef187e411d5019ee0b6fe266e0cb1;hp=4a3f18176296c59db7cf91067d7bc0e989a1909b;hpb=1408e610ac2db753543a546c4312b2eb6799f044;p=nfs-utils.git diff --git a/support/nfs/xio.c b/support/nfs/xio.c index 4a3f181..221cce6 100644 --- a/support/nfs/xio.c +++ b/support/nfs/xio.c @@ -138,8 +138,6 @@ xgetc(XFILE *xfp) ungetc(c, xfp->x_fp); return ' '; } - if (c == '#') - c = xskipcomment(xfp); if (c == '\n') xfp->x_line++; return c; @@ -161,7 +159,12 @@ xskip(XFILE *xfp, char *str) { int c; - while ((c = xgetc(xfp)) != EOF && strchr(str, c)); + while ((c = xgetc(xfp)) != EOF) { + if (c == '#') + c = xskipcomment(xfp); + if (strchr(str, c) == NULL) + break; + } xungetc(c, xfp); }