aboutsummaryrefslogtreecommitdiff
path: root/libbb/fgets_str.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-18 06:04:23 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-18 06:04:23 +0000
commita0f0ae5a7acd71c3c56df5183e38c189c3151c98 (patch)
tree1b0e0056035778be9100dca72809a5e8457de19d /libbb/fgets_str.c
parent74400ccfd08e8ff72b9147951dd437dd3bb7abb1 (diff)
downloadbusybox-a0f0ae5a7acd71c3c56df5183e38c189c3151c98.tar.gz
Revert that change. As Matt Kraai rightly points out,
this is not a bug. What I was I thinking when I committed this. Doh!
Diffstat (limited to 'libbb/fgets_str.c')
-rw-r--r--libbb/fgets_str.c2
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';