Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
367c1903
Commit
367c1903
authored
Jul 10, 2013
by
Etienne Samson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some missing error messages.
parent
f6bd0863
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
src/transports/ssh.c
+16
-9
No files found.
src/transports/ssh.c
View file @
367c1903
...
...
@@ -353,24 +353,31 @@ static int _git_ssh_setup_conn(
t
->
owner
->
cred_acquire_payload
)
<
0
)
goto
on_error
;
}
else
{
goto
on_error
;
}
giterr_set
(
GITERR_NET
,
"Cannot set up SSH connection without credentials"
);
goto
on_error
;
}
assert
(
t
->
cred
);
if
(
!
user
)
{
user
=
git__strdup
(
default_user
);
}
if
(
_git_ssh_session_create
(
&
session
,
s
->
socket
)
<
0
)
if
(
_git_ssh_session_create
(
&
session
,
s
->
socket
)
<
0
)
{
giterr_set
(
GITERR_NET
,
"Failed to initialize SSH session"
);
goto
on_error
;
if
(
_git_ssh_authenticate_session
(
session
,
user
,
t
->
cred
)
<
0
)
}
if
(
_git_ssh_authenticate_session
(
session
,
user
,
t
->
cred
)
<
0
)
{
giterr_set
(
GITERR_NET
,
"Failed to authenticate SSH session"
);
goto
on_error
;
}
channel
=
libssh2_channel_open_session
(
session
);
if
(
!
channel
)
goto
on_error
;
if
(
!
channel
)
{
giterr_set
(
GITERR_NET
,
"Failed to open SSH channel"
);
goto
on_error
;
}
libssh2_channel_set_blocking
(
channel
,
1
);
s
->
session
=
session
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment