summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorKeun Soo Yim <yim@google.com>2016-01-16 02:37:12 -0800
committerKeun Soo Yim <yim@google.com>2016-01-16 02:42:26 -0800
commitab28f5495c85297e7a597c1ba62e996416da7c7e (patch)
tree1891448e4916006295cf504d5e650cc83c1803ca /ssh.c
parentb41c2ea39e0c548081e4466de2cae80b61c24b42 (diff)
forcibly disable roaming support in the client
ssh client security bug fix from http://www.openssh.com/txt/release-7.1p2 openssh client is installed in gce instances. although it's private key is not that much sensitive it's better to land this security patch than not. reported initially as cve-2016-0777 and cve-2016-0778 (January 14th, 2016) BUG: 26587626 Change-Id: I113d576a3522ded8cb0f4a2e117999b0c51d4364
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index 0ad82f02..73854622 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1929,9 +1929,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);
}