diff options
author | 2002-03-18 17:50:31 +0000 | |
---|---|---|
committer | 2002-03-18 17:50:31 +0000 | |
commit | 50c32c83f717ad8de9ebc46278b1cf91421c4a70 (patch) | |
tree | 7f844717809e66abb5ede0cbb40d8249beb5314f /usr.bin/ssh/serverloop.c | |
parent | export compression streams for ssh-privsep (diff) | |
download | wireguard-openbsd-50c32c83f717ad8de9ebc46278b1cf91421c4a70.tar.xz wireguard-openbsd-50c32c83f717ad8de9ebc46278b1cf91421c4a70.zip |
integrate privilege separated openssh; its turned off by default for now.
work done by me and markus@
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index 5dd8a715ca9..09da1971bd3 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.98 2002/02/06 14:55:16 markus Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.99 2002/03/18 17:50:31 provos Exp $"); #include "xmalloc.h" #include "packet.h" @@ -784,7 +784,7 @@ server_loop2(Authctxt *authctxt) channel_free_all(); /* free remaining sessions, e.g. remove wtmp entries */ - session_destroy_all(); + session_destroy_all(NULL); } static void |