diff options
Diffstat (limited to 'shadow/fgetspent_r.c')
-rw-r--r-- | shadow/fgetspent_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shadow/fgetspent_r.c b/shadow/fgetspent_r.c index c45bf21e5e..e217647cb3 100644 --- a/shadow/fgetspent_r.c +++ b/shadow/fgetspent_r.c @@ -64,10 +64,10 @@ __fgetspent_r (FILE *stream, struct spwd *resbuf, char *buffer, size_t buflen, /* Skip leading blanks. */ while (isspace (*p)) ++p; - } while (*p == '\0' || *p == '#' || /* Ignore empty and comment lines. */ + } while (*p == '\0' || *p == '#' /* Ignore empty and comment lines. */ /* Parse the line. If it is invalid, loop to get the next line of the file to parse. */ - ! parse_line (buffer, (void *) resbuf, NULL, 0, &errno)); + || ! parse_line (buffer, (void *) resbuf, NULL, 0, &errno)); funlockfile (stream); |