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

Diff for /src/usr.bin/ssh/ssh.c between version 1.597 and 1.598

version 1.597, 2023/10/12 02:18:18 version 1.598, 2023/10/12 02:48:43
Line 1368 
Line 1368 
             (unsigned long long)pw->pw_uid);              (unsigned long long)pw->pw_uid);
         cinfo->keyalias = xstrdup(options.host_key_alias ?          cinfo->keyalias = xstrdup(options.host_key_alias ?
             options.host_key_alias : options.host_arg);              options.host_key_alias : options.host_arg);
         cinfo->conn_hash_hex = ssh_connection_hash(cinfo->thishost, host,  
             cinfo->portstr, options.user, options.jump_host);  
         cinfo->host_arg = xstrdup(options.host_arg);          cinfo->host_arg = xstrdup(options.host_arg);
         cinfo->remhost = xstrdup(host);          cinfo->remhost = xstrdup(host);
         cinfo->remuser = xstrdup(options.user);          cinfo->remuser = xstrdup(options.user);
Line 1377 
Line 1375 
         cinfo->locuser = xstrdup(pw->pw_name);          cinfo->locuser = xstrdup(pw->pw_name);
         cinfo->jmphost = xstrdup(options.jump_host == NULL ?          cinfo->jmphost = xstrdup(options.jump_host == NULL ?
             "" : options.jump_host);              "" : options.jump_host);
           cinfo->conn_hash_hex = ssh_connection_hash(cinfo->thishost,
               cinfo->remhost, cinfo->portstr, cinfo->remuser, cinfo->jmphost);
   
         /*          /*
          * Expand tokens in arguments. NB. LocalCommand is expanded later,           * Expand tokens in arguments. NB. LocalCommand is expanded later,

Legend:
Removed from v.1.597  
changed lines
  Added in v.1.598