[BACK]Return to readconf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/readconf.c between version 1.246 and 1.247

version 1.246, 2015/11/15 22:26:49 version 1.247, 2016/01/14 14:34:34
Line 1701 
Line 1701 
         options->tun_remote = -1;          options->tun_remote = -1;
         options->local_command = NULL;          options->local_command = NULL;
         options->permit_local_command = -1;          options->permit_local_command = -1;
         options->use_roaming = -1;          options->use_roaming = 0;
         options->add_keys_to_agent = -1;          options->add_keys_to_agent = -1;
         options->visual_host_key = -1;          options->visual_host_key = -1;
         options->ip_qos_interactive = -1;          options->ip_qos_interactive = -1;
Line 1875 
Line 1875 
                 options->tun_remote = SSH_TUNID_ANY;                  options->tun_remote = SSH_TUNID_ANY;
         if (options->permit_local_command == -1)          if (options->permit_local_command == -1)
                 options->permit_local_command = 0;                  options->permit_local_command = 0;
         if (options->use_roaming == -1)          options->use_roaming = 0;
                 options->use_roaming = 1;  
         if (options->visual_host_key == -1)          if (options->visual_host_key == -1)
                 options->visual_host_key = 0;                  options->visual_host_key = 0;
         if (options->ip_qos_interactive == -1)          if (options->ip_qos_interactive == -1)

Legend:
Removed from v.1.246  
changed lines
  Added in v.1.247