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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.324 and 1.325

version 1.324, 2020/01/09 03:28:38 version 1.325, 2020/01/11 16:23:10
Line 74 
Line 74 
 /* Expand a proxy command */  /* Expand a proxy command */
 static char *  static char *
 expand_proxy_command(const char *proxy_command, const char *user,  expand_proxy_command(const char *proxy_command, const char *user,
     const char *host_arg, const char *host, int port)      const char *host, const char *host_arg, int port)
 {  {
         char *tmp, *ret, strport[NI_MAXSERV];          char *tmp, *ret, strport[NI_MAXSERV];
   
Line 129 
Line 129 
                     "proxy dialer: %.100s", strerror(errno));                      "proxy dialer: %.100s", strerror(errno));
   
         command_string = expand_proxy_command(proxy_command, options.user,          command_string = expand_proxy_command(proxy_command, options.user,
             host_arg, host, port);              host, host_arg, port);
         debug("Executing proxy dialer command: %.500s", command_string);          debug("Executing proxy dialer command: %.500s", command_string);
   
         /* Fork and execute the proxy command. */          /* Fork and execute the proxy command. */
Line 212 
Line 212 
                     strerror(errno));                      strerror(errno));
   
         command_string = expand_proxy_command(proxy_command, options.user,          command_string = expand_proxy_command(proxy_command, options.user,
             host_arg, host, port);              host, host_arg, port);
         debug("Executing proxy command: %.500s", command_string);          debug("Executing proxy command: %.500s", command_string);
   
         /* Fork and execute the proxy command. */          /* Fork and execute the proxy command. */

Legend:
Removed from v.1.324  
changed lines
  Added in v.1.325