From: Junio C Hamano Date: Wed, 7 Sep 2011 20:56:38 +0000 (-0700) Subject: send-pack: typofix error message X-Git-Tag: v1.7.8-rc0~21^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e6bcd979684d5a050bcb5d642e761e0ea350c6ec;p=git.git 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 --- diff --git a/builtin/send-pack.c b/builtin/send-pack.c index c1f6ddd92..87833f490 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; }