summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c
index 9d5b54f3e..858ad3164 100644
--- a/servconf.c
+++ b/servconf.c
@@ -215,9 +215,9 @@ fill_default_server_options(ServerOptions *options)
215 if (options->client_alive_count_max == -1) 215 if (options->client_alive_count_max == -1)
216 options->client_alive_count_max = 3; 216 options->client_alive_count_max = 3;
217 if (options->authorized_keys_file == NULL) 217 if (options->authorized_keys_file == NULL)
218 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS; 218 options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
219 if (options->authorized_keys_file2 == NULL) 219 if (options->authorized_keys_file2 == NULL)
220 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2; 220 options->authorized_keys_file2 = _PATH_SSH_USER_PERMITTED_KEYS2;
221 if (options->pam_authentication_via_kbd_int == -1) 221 if (options->pam_authentication_via_kbd_int == -1)
222 options->pam_authentication_via_kbd_int = 0; 222 options->pam_authentication_via_kbd_int = 0;
223} 223}