diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | servconf.c | 4 |
2 files changed, 5 insertions, 4 deletions
@@ -10,6 +10,9 @@ | |||
10 | [auth-krb5.c] | 10 | [auth-krb5.c] |
11 | fix krb5 authorization check. found by <jhawk@MIT.EDU>. from | 11 | fix krb5 authorization check. found by <jhawk@MIT.EDU>. from |
12 | art@, deraadt@ ok | 12 | art@, deraadt@ ok |
13 | - markus@cvs.openbsd.org 2001/11/12 11:17:07 | ||
14 | [servconf.c] | ||
15 | enable authorized_keys2 again. tested by fries@ | ||
13 | 16 | ||
14 | 20011112 | 17 | 20011112 |
15 | - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net> | 18 | - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net> |
@@ -6900,4 +6903,4 @@ | |||
6900 | - Wrote replacements for strlcpy and mkdtemp | 6903 | - Wrote replacements for strlcpy and mkdtemp |
6901 | - Released 1.0pre1 | 6904 | - Released 1.0pre1 |
6902 | 6905 | ||
6903 | $Id: ChangeLog,v 1.1660 2001/11/13 13:02:10 djm Exp $ | 6906 | $Id: ChangeLog,v 1.1661 2001/11/13 13:03:14 djm Exp $ |
diff --git a/servconf.c b/servconf.c index 8e362b04d..e914d4cee 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -10,7 +10,7 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include "includes.h" | 12 | #include "includes.h" |
13 | RCSID("$OpenBSD: servconf.c,v 1.90 2001/11/11 13:02:31 markus Exp $"); | 13 | RCSID("$OpenBSD: servconf.c,v 1.91 2001/11/12 18:17:07 markus Exp $"); |
14 | 14 | ||
15 | #if defined(KRB4) || defined(KRB5) | 15 | #if defined(KRB4) || defined(KRB5) |
16 | #include <krb.h> | 16 | #include <krb.h> |
@@ -220,8 +220,6 @@ fill_default_server_options(ServerOptions *options) | |||
220 | options->client_alive_interval = 0; | 220 | options->client_alive_interval = 0; |
221 | if (options->client_alive_count_max == -1) | 221 | if (options->client_alive_count_max == -1) |
222 | options->client_alive_count_max = 3; | 222 | options->client_alive_count_max = 3; |
223 | if (options->authorized_keys_file == NULL) | ||
224 | options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS; | ||
225 | if (options->authorized_keys_file2 == NULL) { | 223 | if (options->authorized_keys_file2 == NULL) { |
226 | /* authorized_keys_file2 falls back to authorized_keys_file */ | 224 | /* authorized_keys_file2 falls back to authorized_keys_file */ |
227 | if (options->authorized_keys_file != NULL) | 225 | if (options->authorized_keys_file != NULL) |