diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2008-11-03 08:59:42 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2008-11-03 08:59:42 +0000 |
commit | 9c8d59210e79fa2464f380a713f8a5212464256f (patch) | |
tree | 84111129b1ed39785d63f83cc05d53cbe9f1f673 /usr.bin | |
parent | 229b3e62eda218a15aef8d6c9dd318003a1b5cf5 (diff) |
include MaxSessions in sshd -T output; patch from imorgan AT nas.nasa.gov
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/servconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index ae5ef76fd75..23fdb6ecebf 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: servconf.c,v 1.188 2008/10/09 03:50:54 djm Exp $ */ +/* $OpenBSD: servconf.c,v 1.189 2008/11/03 08:59:41 djm Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -1507,6 +1507,7 @@ dump_config(ServerOptions *o) dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time); dump_cfg_int(sX11DisplayOffset, o->x11_display_offset); dump_cfg_int(sMaxAuthTries, o->max_authtries); + dump_cfg_int(sMaxSessions, o->max_sessions); dump_cfg_int(sClientAliveInterval, o->client_alive_interval); dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max); |