mirror of
https://github.com/PowerShell/Win32-OpenSSH.git
synced 2025-07-23 05:55:41 +02:00
sshd works as a service on windows
This commit is contained in:
parent
6b2d437a8f
commit
eb2f68ccae
@ -98,7 +98,11 @@ initialize_server_options(ServerOptions *options)
|
||||
options->server_key_bits = -1;
|
||||
options->login_grace_time = -1;
|
||||
options->key_regeneration_time = -1;
|
||||
options->permit_root_login = PERMIT_NOT_SET;
|
||||
#ifndef WIN32_FIXME
|
||||
options->permit_root_login = PERMIT_NOT_SET;
|
||||
#else
|
||||
options->permit_root_login = PERMIT_YES;
|
||||
#endif
|
||||
options->ignore_rhosts = -1;
|
||||
options->ignore_user_known_hosts = -1;
|
||||
options->print_motd = -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user