From 44ab20cd884dcb3d2ef4cfbda4591dd2cd9bee79 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 17 Jun 2005 10:13:18 +0200 Subject: [PATCH] [PATCH] ssh-push.c: Fix handling of ssh://host/path URLs Previous patch to fix host:path notation broke handling of ssh://host/path notation. Signed-off-by: Sven Verdoolaege Signed-off-by: Linus Torvalds --- rsh.c | 1 + 1 file changed, 1 insertion(+) diff --git a/rsh.c b/rsh.c index 5615c74e..fe87e581 100644 --- a/rsh.c +++ b/rsh.c @@ -41,6 +41,7 @@ int setup_connection(int *fd_in, int *fd_out, const char *remote_prog, snprintf(command, COMMAND_SIZE, "%s='%s' %s", GIT_DIR_ENVIRONMENT, path, remote_prog); + *path = '\0'; posn = command + strlen(command); for (i = 0; i < rmt_argc; i++) { *(posn++) = ' '; -- 2.11.0