[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.371 and 1.372

version 1.371, 2023/01/02 07:03:30 version 1.372, 2023/01/13 02:58:20
Line 2313 
Line 2313 
 initialize_options(Options * options)  initialize_options(Options * options)
 {  {
         memset(options, 'X', sizeof(*options));          memset(options, 'X', sizeof(*options));
           options->host_arg = NULL;
         options->forward_agent = -1;          options->forward_agent = -1;
         options->forward_agent_sock_path = NULL;          options->forward_agent_sock_path = NULL;
         options->forward_x11 = -1;          options->forward_x11 = -1;
Line 3257 
Line 3258 
         free(all_key);          free(all_key);
   
         /* Most interesting options first: user, host, port */          /* Most interesting options first: user, host, port */
           dump_cfg_string(oHost, o->host_arg);
         dump_cfg_string(oUser, o->user);          dump_cfg_string(oUser, o->user);
         dump_cfg_string(oHostname, host);          dump_cfg_string(oHostname, host);
         dump_cfg_int(oPort, o->port);          dump_cfg_int(oPort, o->port);

Legend:
Removed from v.1.371  
changed lines
  Added in v.1.372