We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b2d437 commit eb2f68cCopy full SHA for eb2f68c
servconf.c
@@ -98,7 +98,11 @@ initialize_server_options(ServerOptions *options)
98
options->server_key_bits = -1;
99
options->login_grace_time = -1;
100
options->key_regeneration_time = -1;
101
- options->permit_root_login = PERMIT_NOT_SET;
+#ifndef WIN32_FIXME
102
+ options->permit_root_login = PERMIT_NOT_SET;
103
+#else
104
+ options->permit_root_login = PERMIT_YES;
105
+#endif
106
options->ignore_rhosts = -1;
107
options->ignore_user_known_hosts = -1;
108
options->print_motd = -1;
0 commit comments