diff options
author | Ben Straub <bs@github.com> | 2013-11-04 19:09:30 -0800 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2013-11-04 19:09:30 -0800 |
commit | ac72051afa619446818adf286cf3cdbd13991b38 (patch) | |
tree | dada54247efc7ecb3eb43ba48a5e0bb19ceaf0bf | |
parent | 2d1feaa2c7aef2e0d230e5535b214289c2c4a905 (diff) | |
download | libgit2-ac72051afa619446818adf286cf3cdbd13991b38.tar.gz |
Fix ssh.c compile
-rw-r--r-- | src/transports/ssh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/transports/ssh.c b/src/transports/ssh.c index db950e53d..4a905e3c9 100644 --- a/src/transports/ssh.c +++ b/src/transports/ssh.c @@ -317,7 +317,7 @@ static int _git_ssh_setup_conn( const char *cmd, git_smart_subtransport_stream **stream) { - char *host=NULL, *port=NULL, *user=NULL, *pass=NULL; + char *host=NULL, *port=NULL, *path=NULL, *user=NULL, *pass=NULL; const char *default_port="22"; ssh_stream *s; LIBSSH2_SESSION* session=NULL; @@ -330,7 +330,7 @@ static int _git_ssh_setup_conn( s = (ssh_stream *)*stream; if (!git__prefixcmp(url, prefix_ssh)) { - if (gitno_extract_url_parts(&host, &port, &user, &pass, url, default_port) < 0) + if (gitno_extract_url_parts(&host, &port, &path, &user, &pass, url, default_port) < 0) goto on_error; } else { if (git_ssh_extract_url_parts(&host, &user, url) < 0) @@ -389,6 +389,7 @@ static int _git_ssh_setup_conn( t->current_stream = s; git__free(host); git__free(port); + git__free(path); git__free(user); git__free(pass); |