Commit cb7fd1ed by kas

Fixes code styling

parent fbdf5bdd
...@@ -518,7 +518,6 @@ static int _git_ssh_setup_conn( ...@@ -518,7 +518,6 @@ static int _git_ssh_setup_conn(
{ {
git_net_url urldata = GIT_NET_URL_INIT; git_net_url urldata = GIT_NET_URL_INIT;
int auth_methods, error = 0; int auth_methods, error = 0;
int sub_error;
size_t i; size_t i;
ssh_stream *s; ssh_stream *s;
git_cred *cred = NULL; git_cred *cred = NULL;
...@@ -642,11 +641,10 @@ post_extract: ...@@ -642,11 +641,10 @@ post_extract:
if (error == GIT_EAUTH) { if (error == GIT_EAUTH) {
/* refresh auth methods */ /* refresh auth methods */
sub_error = list_auth_methods(&auth_methods, session, urldata.username); if ((error = list_auth_methods(&auth_methods, session, urldata.username)) < 0)
if (sub_error < 0) {
error = sub_error;
goto done; goto done;
} else
error = GIT_EAUTH;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment