diff options
author | Anton Altaparmakov <aia21@cam.ac.uk> | 2005-05-05 13:31:53 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-05 07:36:54 -0700 |
commit | 5210372fe4a2e2ec73291434e86c07345524a276 (patch) | |
tree | 0c51744906529a99c995186ff974dbcad8db4e82 /rpush.c | |
parent | 2af87aae7801c3de62d6fca709ccb723d99a9452 (diff) | |
download | git-5210372fe4a2e2ec73291434e86c07345524a276.tar.gz git-5210372fe4a2e2ec73291434e86c07345524a276.tar.xz |
[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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |