]> asedeno.scripts.mit.edu Git - git.git/commitdiff
[PATCH] Fix git rpush.
authorAnton Altaparmakov <aia21@cam.ac.uk>
Thu, 5 May 2005 12:31:53 +0000 (13:31 +0100)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Thu, 5 May 2005 14:36:54 +0000 (07:36 -0700)
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>
rpush.c

diff --git a/rpush.c b/rpush.c
index 0293a1a46311d7e20b13177143741ab9d6d0d201..26518846704ecf63ad00390599b251aa1b32713e 100644 (file)
--- 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);