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

Diff for /src/usr.bin/ssh/session.c between version 1.20 and 1.21

version 1.20, 2000/06/18 04:42:54 version 1.21, 2000/06/26 21:59:18
Line 73 
Line 73 
 extern int log_stderr;  extern int log_stderr;
 extern int debug_flag;  extern int debug_flag;
   
   extern int startup_pipe;
   
 /* Local Xauthority file. */  /* Local Xauthority file. */
 static char *xauthfile;  static char *xauthfile;
   
Line 145 
Line 147 
          * authentication.           * authentication.
          */           */
         alarm(0);          alarm(0);
           close(startup_pipe);
   
         /*          /*
          * Inform the channel mechanism that we are the server side and that           * Inform the channel mechanism that we are the server side and that
Line 1560 
Line 1563 
          * authentication.           * authentication.
          */           */
         alarm(0);          alarm(0);
           close(startup_pipe);
         server_loop2();          server_loop2();
         if (xauthfile)          if (xauthfile)
                 xauthfile_cleanup_proc(NULL);                  xauthfile_cleanup_proc(NULL);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21