[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.116.2.2 and 1.116.2.3

version 1.116.2.2, 2001/11/15 00:15:19 version 1.116.2.3, 2001/11/15 22:51:15
Line 123 
Line 123 
 /* socket address the host resolves to */  /* socket address the host resolves to */
 struct sockaddr_storage hostaddr;  struct sockaddr_storage hostaddr;
   
 /*  
  * Flag to indicate that we have received a window change signal which has  
  * not yet been processed.  This will cause a message indicating the new  
  * window size to be sent to the server a little later.  This is volatile  
  * because this is updated in a signal handler.  
  */  
 volatile int received_window_change_signal = 0;  
   
 /* Private host keys. */  /* Private host keys. */
 struct {  struct {
         Key     **keys;          Key     **keys;
Line 739 
Line 731 
             tilde_expand_filename(options.system_hostfile2, original_real_uid);              tilde_expand_filename(options.system_hostfile2, original_real_uid);
         options.user_hostfile2 =          options.user_hostfile2 =
             tilde_expand_filename(options.user_hostfile2, original_real_uid);              tilde_expand_filename(options.user_hostfile2, original_real_uid);
   
           signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
   
         /* Log into the remote system.  This never returns if the login fails. */          /* Log into the remote system.  This never returns if the login fails. */
         ssh_login(sensitive_data.keys, sensitive_data.nkeys,          ssh_login(sensitive_data.keys, sensitive_data.nkeys,

Legend:
Removed from v.1.116.2.2  
changed lines
  Added in v.1.116.2.3