X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fnfs%2Fxio.c;h=221cce6ef2babdf35d96330e6399dd5d35679a3f;hp=4a3f18176296c59db7cf91067d7bc0e989a1909b;hb=b0c3cbfee702c019dab0a22557bbf38e24dfcee1;hpb=ac5b03be829b4c9369ebfb07a688308721103228 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); }