# HG changeset patch # User Jan Parcel # Date 1452794169 28800 # Node ID 5251bd5ce824802cc17e5a79aa657e6eb564e39e # Parent 18c90d16c90dad0d17f6091af67be351c28ad8f9 22541411 problem in UTILITY/OPENSSH 22541467 problem in UTILITY/OPENSSH diff -r 18c90d16c90d -r 5251bd5ce824 components/openssh/patches/035-disable_roaming.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/openssh/patches/035-disable_roaming.patch Thu Jan 14 09:56:09 2016 -0800 @@ -0,0 +1,22 @@ +diff -rupN old/readconf.c new/readconf.c +--- old/readconf.c 2016-01-13 21:04:35.370412170 -0800 ++++ new/readconf.c 2016-01-13 21:05:52.140509970 -0800 +@@ -1591,7 +1591,7 @@ initialize_options(Options * options) + options->tun_remote = -1; + options->local_command = NULL; + options->permit_local_command = -1; +- options->use_roaming = -1; ++ options->use_roaming = 0; + options->visual_host_key = -1; + options->zero_knowledge_password_authentication = -1; + options->ip_qos_interactive = -1; +@@ -1758,8 +1758,7 @@ fill_default_options(Options * options) + options->tun_remote = SSH_TUNID_ANY; + if (options->permit_local_command == -1) + options->permit_local_command = 0; +- if (options->use_roaming == -1) +- options->use_roaming = 1; ++ options->use_roaming = 0; + if (options->visual_host_key == -1) + options->visual_host_key = 0; + if (options->zero_knowledge_password_authentication == -1)