From fb1642f2caa3690cb40f603fca22eeace09a0bfa Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 16 Jul 2008 23:04:49 +0000 Subject: fix up callsites of config_read to check for >= 0 --- libbb/parse_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbb/parse_config.c') diff --git a/libbb/parse_config.c b/libbb/parse_config.c index e63204b09..f07099285 100644 --- a/libbb/parse_config.c +++ b/libbb/parse_config.c @@ -19,7 +19,7 @@ Typical usage: // open file if (config_open(filename, &p)) { // parse line-by-line - while (*config_read(&p, t, 3, 0, delimiters, comment_char)) { // 0..3 tokens + while (*config_read(&p, t, 3, 0, delimiters, comment_char) >= 0) { // 0..3 tokens // use tokens bb_error_msg("TOKENS: [%s][%s][%s]", t[0], t[1], t[2]); } @@ -77,7 +77,7 @@ int FAST_FUNC config_read(parser_t *parser, char **tokens, int ntokens, int mint //TODO: speed up xmalloc_fgetline by internally using fgets, not fgetc line = xmalloc_fgetline(parser->fp); if (!line) - return line; + return -1; parser->lineno++; // handle continuations. Tito's code stolen :) -- cgit v1.2.3