diff options
author | 2016-01-14 14:34:34 +0000 | |
---|---|---|
committer | 2016-01-14 14:34:34 +0000 | |
commit | c840f74be767dab9687f4c8ff3df58a418347222 (patch) | |
tree | b7ae0e35c297e31c246d4de84ba1adfe518d3452 /usr.bin/ssh/ssh.c | |
parent | Grab the KERNEL_LOCK before delivering a message to the routing socket (diff) | |
download | wireguard-openbsd-c840f74be767dab9687f4c8ff3df58a418347222.tar.xz wireguard-openbsd-c840f74be767dab9687f4c8ff3df58a418347222.zip |
Disable experimental client-side roaming support. Server side was
disabled/gutted for years already, but this aspect was surprisingly
forgotten.
Thanks for report from Qualys
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 3fd9c370043..c3e5c506915 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.433 2016/01/13 23:04:47 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.434 2016/01/14 14:34:34 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1900,9 +1900,6 @@ ssh_session2(void) fork_postauth(); } - if (options.use_roaming) - request_roaming(); - return client_loop(tty_flag, tty_flag ? options.escape_char : SSH_ESCAPECHAR_NONE, id); } |