From d97669593ae0b423d9a380bba43047d3778f0d6e Mon Sep 17 00:00:00 2001 From: Brad Morgan Date: Sun, 5 May 2013 14:05:03 -0400 Subject: [PATCH] Cleanup --- src/transports/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transports/ssh.c b/src/transports/ssh.c index 8a2f9e3bb..252a802a7 100644 --- a/src/transports/ssh.c +++ b/src/transports/ssh.c @@ -210,12 +210,12 @@ static int git_ssh_extract_url_parts( return -1; } - start = url; at = strchr(url, '@'); if (at) { start = at+1; *username = git__substrdup(url, at - url); } else { + start = url; *username = git__strdup(default_user); }