Ported changed due to merge from openssh/master
This commit is contained in:
parent
3dd748c035
commit
0c8f8473d5
|
@ -56,6 +56,19 @@ struct passwd *privsep_pw = NULL;
|
||||||
static char *config_file_name = _PATH_SERVER_CONFIG_FILE;
|
static char *config_file_name = _PATH_SERVER_CONFIG_FILE;
|
||||||
int auth_sock = -1;
|
int auth_sock = -1;
|
||||||
|
|
||||||
|
int
|
||||||
|
auth2_key_already_used(Authctxt *authctxt, const struct sshkey *key)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
auth2_record_key(Authctxt *authctxt, int authenticated,
|
||||||
|
const struct sshkey *key)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
auth2_methods_valid(const char * c, int i) {
|
auth2_methods_valid(const char * c, int i) {
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue