Skip to content

Commit

Permalink
send-pack: typofix error message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Sep 12, 2011
1 parent 9684e44 commit e6bcd97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/send-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit e6bcd97

Please sign in to comment.