The test for empty lines didn't ignore whitespace properly Signed-off-by: Justin Mitchell <jumitche@xxxxxxxxxx> --- support/nfs/conffile.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/support/nfs/conffile.c b/support/nfs/conffile.c index ee94031..d20460e 100644 --- a/support/nfs/conffile.c +++ b/support/nfs/conffile.c @@ -255,14 +255,14 @@ conf_parse_line(int trans, char *line, const char *filename, int lineno, char ** char *inc_section = NULL, *inc_subsection = NULL; char *relpath, *subconf; + /* Strip off any leading blanks */ + while (isspace(*line)) + line++; + /* Ignore blank lines */ if (*line == '\0') return; - /* Strip off any leading blanks */ - while (isblank(*line)) - line++; - /* Lines starting with '#' or ';' are comments. */ if (*line == '#' || *line == ';') return; -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html