summaryrefslogtreecommitdiffstats
path: root/servconf.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-09-05 06:35:14 +0200
committerDamien Miller <djm@mindrot.org>2002-09-05 06:35:14 +0200
commitc13486300dea3ebcdd73d23f2f32225e4d14e37c (patch)
tree61356427c00b3cf1c0b9ae12210e6bbe44cde8ce /servconf.c
parent - (djm) Patch from itojun@ for Darwin OS: test getaddrinfo, reorder libcrypt (diff)
downloadopenssh-c13486300dea3ebcdd73d23f2f32225e4d14e37c.tar.xz
openssh-c13486300dea3ebcdd73d23f2f32225e4d14e37c.zip
- (djm) OpenBSD CVS Sync
- stevesk@cvs.openbsd.org 2002/09/04 18:52:42 [servconf.c sshd.8 sshd_config.5] default LoginGraceTime to 2m; 1m may be too short for slow systems. ok markus@
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c
index 211ebf6b0..e3939df40 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: servconf.c,v 1.114 2002/08/21 19:38:06 stevesk Exp $");
+RCSID("$OpenBSD: servconf.c,v 1.115 2002/09/04 18:52:42 stevesk Exp $");
#if defined(KRB4)
#include <krb.h>
@@ -159,7 +159,7 @@ fill_default_server_options(ServerOptions *options)
if (options->server_key_bits == -1)
options->server_key_bits = 768;
if (options->login_grace_time == -1)
- options->login_grace_time = 60;
+ options->login_grace_time = 120;
if (options->key_regeneration_time == -1)
options->key_regeneration_time = 3600;
if (options->permit_root_login == PERMIT_NOT_SET)