diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-07 13:56:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-12 16:40:06 -0700 |
commit | e6bcd979684d5a050bcb5d642e761e0ea350c6ec (patch) | |
tree | 9b4f7b4be2674e3baf1fbca63c4ca692565ca675 /builtin/send-pack.c | |
parent | 9684e44a07495ad6ff0fa57f1d0cb7479b72e453 (diff) | |
download | git-e6bcd979684d5a050bcb5d642e761e0ea350c6ec.tar.gz |
send-pack: typofix error message
The message identifies the process as receive-pack when it cannot fork the
sideband demultiplexer. We are actually a send-pack.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/send-pack.c')
-rw-r--r-- | builtin/send-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/send-pack.c b/builtin/send-pack.c index c1f6ddd927..87833f4902 100644 --- a/builtin/send-pack.c +++ b/builtin/send-pack.c @@ -334,7 +334,7 @@ int send_pack(struct send_pack_args *args, demux.data = fd; demux.out = -1; if (start_async(&demux)) - die("receive-pack: unable to fork off sideband demultiplexer"); + die("send-pack: unable to fork off sideband demultiplexer"); in = demux.out; } |