Skip to content

Commit e6bcd97

Browse files
committed
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 <[email protected]>
1 parent 9684e44 commit e6bcd97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/send-pack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ int send_pack(struct send_pack_args *args,
334334
demux.data = fd;
335335
demux.out = -1;
336336
if (start_async(&demux))
337-
die("receive-pack: unable to fork off sideband demultiplexer");
337+
die("send-pack: unable to fork off sideband demultiplexer");
338338
in = demux.out;
339339
}
340340

0 commit comments

Comments
 (0)