summaryrefslogtreecommitdiff
path: root/fetch-clone.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-10-30 02:33:22 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-10-30 05:10:26 (GMT)
commit5ca807842fcb709757147df0044e8b4b2946ea22 (patch)
tree893b3e30e7e9f07ed111559badefb21240d02349 /fetch-clone.c
parentc7740a943ec896247ebc5514b6be02710caf3c53 (diff)
downloadgit-5ca807842fcb709757147df0044e8b4b2946ea22.zip
git-5ca807842fcb709757147df0044e8b4b2946ea22.tar.gz
git-5ca807842fcb709757147df0044e8b4b2946ea22.tar.bz2
missing small substitution
Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'fetch-clone.c')
-rw-r--r--fetch-clone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch-clone.c b/fetch-clone.c
index 96cdab4..f629d8d 100644
--- a/fetch-clone.c
+++ b/fetch-clone.c
@@ -46,7 +46,7 @@ static int get_pack(int xd[2], const char *me, int sideband, const char **argv)
side_pid = setup_sideband(sideband, me, fd, xd);
pid = fork();
if (pid < 0)
- die("%s: unable to fork off git-unpack-objects", me);
+ die("%s: unable to fork off %s", me, argv[0]);
if (!pid) {
dup2(fd[0], 0);
close(fd[0]);