projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9684e44
)
send-pack: typofix error message
author
Junio C Hamano
<gitster@pobox.com>
Wed, 7 Sep 2011 20:56:38 +0000
(13:56 -0700)
committer
Junio 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
patch
|
blob
|
history
diff --git
a/builtin/send-pack.c
b/builtin/send-pack.c
index c1f6ddd927d61fbc2558ee3624224af405d918c3..87833f4902bc08d9cfacaf880b87a5a02abbf3d1 100644
(file)
--- 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;
}