[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.185 and 1.186

version 1.185, 2002/09/11 18:27:26 version 1.186, 2002/09/19 01:58:18
Line 138 
Line 138 
 /* # of replies received for global requests */  /* # of replies received for global requests */
 static int client_global_request_id = 0;  static int client_global_request_id = 0;
   
   /* pid of proxycommand child process */
   pid_t proxy_command_pid = 0;
   
 /* Prints a help message to the user.  This function never returns. */  /* Prints a help message to the user.  This function never returns. */
   
 static void  static void
Line 698 
Line 701 
   
         exit_status = compat20 ? ssh_session2() : ssh_session();          exit_status = compat20 ? ssh_session2() : ssh_session();
         packet_close();          packet_close();
   
           /*
            * Send SIGHUP to proxy command if used. We don't wait() in
            * case it hangs and instead rely on init to reap the child
            */
           if (proxy_command_pid > 1)
                   kill(proxy_command_pid, SIGHUP);
   
         return exit_status;          return exit_status;
 }  }
   

Legend:
Removed from v.1.185  
changed lines
  Added in v.1.186