summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-10-28 13:32:10 -0700
committerJunio C Hamano <gitster@pobox.com>2016-01-14 14:30:41 -0800
commit276e8c5e095fc187c94a25e984640dfcb78958b9 (patch)
tree73d3a384494c4a146512e4d5708abb0809af71b9
parentc99e22adffa4e59a8ea601cc8070afa283823e63 (diff)
downloadgit-jc/strbuf-gets-2.tar.gz
test-sha1-array: read command stream with strbuf_getline()jc/strbuf-gets-2
The input to this command comes from a pipeline in t0064, whose upstream has bunch of "echo"s. It is not unreasonable to expect that it may be fed CRLF lines on DOSsy systems. Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--test-sha1-array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-sha1-array.c b/test-sha1-array.c
index 700f3f3422..60ea1d5f14 100644
--- a/test-sha1-array.c
+++ b/test-sha1-array.c
@@ -11,7 +11,7 @@ int main(int argc, char **argv)
struct sha1_array array = SHA1_ARRAY_INIT;
struct strbuf line = STRBUF_INIT;
- while (strbuf_getline_lf(&line, stdin) != EOF) {
+ while (strbuf_getline(&line, stdin) != EOF) {
const char *arg;
unsigned char sha1[20];