summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-10-28 13:36:00 -0700
committerJunio C Hamano <gitster@pobox.com>2016-01-14 14:30:41 -0800
commitdeeea5cafd5a1f941e459c6b1136adc2c7be3a37 (patch)
tree8b2b1faac553185c5f6a396019388bcb2b6d88ed
parent18c404202f53c0bb51ab0d2af82c8d2670988688 (diff)
downloadgit-deeea5cafd5a1f941e459c6b1136adc2c7be3a37.tar.gz
transport-helper: read helper response with strbuf_getline()
Our implementation of helpers never use CRLF line endings, and they do not depend on the ability to place a CR as payload at the end of the line, so this is essentially a no-op for in-tree users. However, this allows third-party implementation of helpers to give us their line with CRLF line ending (they cannot expect us to feed CRLF to them, though). Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--transport-helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/transport-helper.c b/transport-helper.c
index d108336443..f833a54fbd 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -54,7 +54,7 @@ static int recvline_fh(FILE *helper, struct strbuf *buffer, const char *name)
strbuf_reset(buffer);
if (debug)
fprintf(stderr, "Debug: Remote helper: Waiting...\n");
- if (strbuf_getline_lf(buffer, helper) == EOF) {
+ if (strbuf_getline(buffer, helper) == EOF) {
if (debug)
fprintf(stderr, "Debug: Remote helper quit.\n");
return 1;