summaryrefslogtreecommitdiffstats
path: root/rpush.c
diff options
context:
space:
mode:
authorAnton Altaparmakov <aia21@cam.ac.uk>2005-05-05 14:31:53 +0200
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-05 16:36:54 +0200
commit5210372fe4a2e2ec73291434e86c07345524a276 (patch)
tree0c51744906529a99c995186ff974dbcad8db4e82 /rpush.c
parent[PATCH] Fix git rpull. (diff)
downloadgit-5210372fe4a2e2ec73291434e86c07345524a276.tar.xz
git-5210372fe4a2e2ec73291434e86c07345524a276.zip
[PATCH] Fix git rpush.
Following up from my fix to rpull, please also apply this, which fixes rpush.c to call git-rpull rather than rpull which no longer exists after the Big Rename(TM)... Signed-off-by: Anton Altaparmakov <aia21@cantab.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'rpush.c')
-rw-r--r--rpush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpush.c b/rpush.c
index 0293a1a463..2651884670 100644
--- a/rpush.c
+++ b/rpush.c
@@ -61,7 +61,7 @@ int main(int argc, char **argv)
}
commit_id = argv[arg];
url = argv[arg + 1];
- if (setup_connection(&fd_in, &fd_out, "rpull", url, arg, argv + 1))
+ if (setup_connection(&fd_in, &fd_out, "git-rpull", url, arg, argv + 1))
return 1;
service(fd_in, fd_out);