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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.212 and 1.213

version 1.212, 2009/05/28 16:50:16 version 1.213, 2009/07/05 19:28:33
Line 1465 
Line 1465 
         /* Stop watching for window change. */          /* Stop watching for window change. */
         signal(SIGWINCH, SIG_DFL);          signal(SIGWINCH, SIG_DFL);
   
         packet_start(SSH2_MSG_DISCONNECT);          if (compat20) {
         packet_put_int(SSH2_DISCONNECT_BY_APPLICATION);                  packet_start(SSH2_MSG_DISCONNECT);
         packet_put_cstring("disconnected by user");                  packet_put_int(SSH2_DISCONNECT_BY_APPLICATION);
         packet_send();                  packet_put_cstring("disconnected by user");
         packet_write_wait();                  packet_send();
                   packet_write_wait();
           }
   
         channel_free_all();          channel_free_all();
   

Legend:
Removed from v.1.212  
changed lines
  Added in v.1.213