diff options
author | Johannes Sixt <johannes.sixt@telecom.at> | 2007-11-30 22:51:10 +0100 |
---|---|---|
committer | Johannes Sixt <johannes.sixt@telecom.at> | 2008-06-26 08:45:08 +0200 |
commit | be501813d25bedc1a441940f349fb91bd9fa4ef6 (patch) | |
tree | 7a4da16af830119e98fcd0ed52a5e3502d68bd30 /connect.c | |
parent | 6ed807f8432c558ef102c94cb2e8ae4e03c48d4e (diff) | |
download | git-be501813d25bedc1a441940f349fb91bd9fa4ef6.tar.gz |
Windows: Disambiguate DOS style paths from SSH URLs.
If on Windows a path is specified as C:/path, then this is also a valid
SSH URL. To disambiguate between the two interpretations we take an URL
that looks like a path with a drive letter as a local URL.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Diffstat (limited to 'connect.c')
-rw-r--r-- | connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -529,7 +529,7 @@ struct child_process *git_connect(int fd[2], const char *url_orig, end = host; path = strchr(end, c); - if (path) { + if (path && !has_dos_drive_prefix(end)) { if (c == ':') { protocol = PROTO_SSH; *path++ = '\0'; |