зеркало из https://github.com/microsoft/git.git
transport-helper: remove name parameter
Commit 266f1fdfa
(transport-helper: be quiet on read errors from
helpers, 2013-06-21) removed a call to 'die()' which printed the name of
the remote helper passed in to the 'recvline_fh()' function using the
'name' parameter. Once the call to 'die()' was removed the parameter
was no longer necessary but wasn't removed. Clean up 'recvline_fh()'
parameter list by removing the 'name' parameter.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
1aa8dded3a
Коммит
b1c2edfc18
|
@ -49,7 +49,7 @@ static void sendline(struct helper_data *helper, struct strbuf *buffer)
|
||||||
die_errno("Full write to remote helper failed");
|
die_errno("Full write to remote helper failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
static int recvline_fh(FILE *helper, struct strbuf *buffer, const char *name)
|
static int recvline_fh(FILE *helper, struct strbuf *buffer)
|
||||||
{
|
{
|
||||||
strbuf_reset(buffer);
|
strbuf_reset(buffer);
|
||||||
if (debug)
|
if (debug)
|
||||||
|
@ -67,7 +67,7 @@ static int recvline_fh(FILE *helper, struct strbuf *buffer, const char *name)
|
||||||
|
|
||||||
static int recvline(struct helper_data *helper, struct strbuf *buffer)
|
static int recvline(struct helper_data *helper, struct strbuf *buffer)
|
||||||
{
|
{
|
||||||
return recvline_fh(helper->out, buffer, helper->name);
|
return recvline_fh(helper->out, buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void write_constant(int fd, const char *str)
|
static void write_constant(int fd, const char *str)
|
||||||
|
@ -586,7 +586,7 @@ static int process_connect_service(struct transport *transport,
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
sendline(data, &cmdbuf);
|
sendline(data, &cmdbuf);
|
||||||
if (recvline_fh(input, &cmdbuf, name))
|
if (recvline_fh(input, &cmdbuf))
|
||||||
exit(128);
|
exit(128);
|
||||||
|
|
||||||
if (!strcmp(cmdbuf.buf, "")) {
|
if (!strcmp(cmdbuf.buf, "")) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче