[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.22 and 1.23

version 1.22, 2000/07/05 20:18:07 version 1.23, 2000/07/11 08:11:33
Line 147 
Line 147 
          * authentication.           * authentication.
          */           */
         alarm(0);          alarm(0);
         close(startup_pipe);          if (startup_pipe != -1) {
                   close(startup_pipe);
                   startup_pipe = -1;
           }
   
         /*          /*
          * 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 1563 
Line 1566 
          * authentication.           * authentication.
          */           */
         alarm(0);          alarm(0);
         close(startup_pipe);          if (startup_pipe != -1) {
                   close(startup_pipe);
                   startup_pipe = -1;
           }
         server_loop2();          server_loop2();
         if (xauthfile)          if (xauthfile)
                 xauthfile_cleanup_proc(NULL);                  xauthfile_cleanup_proc(NULL);

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23