diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-18 06:04:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-18 06:04:23 +0000 |
commit | a0f0ae5a7acd71c3c56df5183e38c189c3151c98 (patch) | |
tree | 1b0e0056035778be9100dca72809a5e8457de19d | |
parent | 74400ccfd08e8ff72b9147951dd437dd3bb7abb1 (diff) |
Revert that change. As Matt Kraai rightly points out,
this is not a bug. What I was I thinking when I committed
this. Doh!
-rw-r--r-- | libbb/fgets_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/fgets_str.c b/libbb/fgets_str.c index 7d41d72f1..33d8d00cc 100644 --- a/libbb/fgets_str.c +++ b/libbb/fgets_str.c @@ -55,7 +55,7 @@ char *fgets_str(FILE *file, const char *terminating_string) break; } } - if (idx == 0 || linebuf[0] == '\n') { + if (idx == 0) { return NULL; } linebuf[idx] = '\0'; |