[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.309 and 1.310

version 1.309, 2008/01/19 20:51:26 version 1.310, 2008/05/08 12:02:23
Line 48 
Line 48 
 #include <sys/socket.h>  #include <sys/socket.h>
 #include <sys/un.h>  #include <sys/un.h>
 #include <sys/stat.h>  #include <sys/stat.h>
   #include <sys/queue.h>
   
 #include <ctype.h>  #include <ctype.h>
 #include <errno.h>  #include <errno.h>
Line 1174 
Line 1175 
   
         channel_send_open(c->self);          channel_send_open(c->self);
         if (!no_shell_flag)          if (!no_shell_flag)
                 channel_register_confirm(c->self, ssh_session2_setup, NULL);                  channel_register_open_confirm(c->self,
                       ssh_session2_setup, NULL);
   
         return c->self;          return c->self;
 }  }

Legend:
Removed from v.1.309  
changed lines
  Added in v.1.310