From a0f0ae5a7acd71c3c56df5183e38c189c3151c98 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 18 Oct 2001 06:04:23 +0000 Subject: [PATCH] Revert that change. As Matt Kraai rightly points out, this is not a bug. What I was I thinking when I committed this. Doh! --- libbb/fgets_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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';