Code

send-pack: typofix error message
authorJunio C Hamano <gitster@pobox.com>
Wed, 7 Sep 2011 20:56:38 +0000 (13:56 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 Sep 2011 23:40:06 +0000 (16:40 -0700)
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>
builtin/send-pack.c

index c1f6ddd927d61fbc2558ee3624224af405d918c3..87833f4902bc08d9cfacaf880b87a5a02abbf3d1 100644 (file)
@@ -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;
        }