summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-09-07 13:56:38 -0700
committerJunio C Hamano <gitster@pobox.com>2011-09-12 16:40:06 -0700
commite6bcd979684d5a050bcb5d642e761e0ea350c6ec (patch)
tree9b4f7b4be2674e3baf1fbca63c4ca692565ca675
parent9684e44a07495ad6ff0fa57f1d0cb7479b72e453 (diff)
downloadgit-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>
-rw-r--r--builtin/send-pack.c2
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;
}