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
5adde383
Commit
5adde383
authored
Feb 27, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Pass hostkey & port to host verify callback"
This reverts commit
f68b40c0
.
parent
8a871d13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
11 deletions
+3
-11
src/libgit2/transports/ssh.c
+3
-11
No files found.
src/libgit2/transports/ssh.c
View file @
5adde383
...
@@ -651,8 +651,6 @@ static int check_against_known_hosts(
...
@@ -651,8 +651,6 @@ static int check_against_known_hosts(
return
ret
;
return
ret
;
}
}
#define SSH_DEFAULT_PORT 22
/*
/*
* Perform the check for the session's certificate against known hosts if
* Perform the check for the session's certificate against known hosts if
* possible and then ask the user if they have a callback.
* possible and then ask the user if they have a callback.
...
@@ -750,16 +748,9 @@ static int check_certificate(
...
@@ -750,16 +748,9 @@ static int check_certificate(
if
(
check_cb
!=
NULL
)
{
if
(
check_cb
!=
NULL
)
{
git_cert_hostkey
*
cert_ptr
=
&
cert
;
git_cert_hostkey
*
cert_ptr
=
&
cert
;
git_error_state
previous_error
=
{
0
};
git_error_state
previous_error
=
{
0
};
const
char
*
host_ptr
=
host
;
git_str
host_and_port
=
GIT_STR_INIT
;
if
(
port
!=
SSH_DEFAULT_PORT
)
{
git_str_printf
(
&
host_and_port
,
"%s:%d"
,
host
,
port
);
host_ptr
=
host_and_port
.
ptr
;
}
git_error_state_capture
(
&
previous_error
,
error
);
git_error_state_capture
(
&
previous_error
,
error
);
error
=
check_cb
((
git_cert
*
)
cert_ptr
,
cert_valid
,
host
_ptr
,
check_cb_payload
);
error
=
check_cb
((
git_cert
*
)
cert_ptr
,
cert_valid
,
host
,
check_cb_payload
);
if
(
error
==
GIT_PASSTHROUGH
)
{
if
(
error
==
GIT_PASSTHROUGH
)
{
error
=
git_error_state_restore
(
&
previous_error
);
error
=
git_error_state_restore
(
&
previous_error
);
}
else
if
(
error
<
0
&&
!
git_error_last
())
{
}
else
if
(
error
<
0
&&
!
git_error_last
())
{
...
@@ -767,12 +758,13 @@ static int check_certificate(
...
@@ -767,12 +758,13 @@ static int check_certificate(
}
}
git_error_state_free
(
&
previous_error
);
git_error_state_free
(
&
previous_error
);
git_str_dispose
(
&
host_and_port
);
}
}
return
error
;
return
error
;
}
}
#define SSH_DEFAULT_PORT "22"
static
int
_git_ssh_setup_conn
(
static
int
_git_ssh_setup_conn
(
ssh_subtransport
*
t
,
ssh_subtransport
*
t
,
const
char
*
url
,
const
char
*
url
,
...
...
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