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

Diff for /src/usr.bin/ssh/packet.c between version 1.98 and 1.99

version 1.98, 2002/10/23 10:32:13 version 1.99, 2002/11/04 10:09:51
Line 1221 
Line 1221 
         vsnprintf(buf, sizeof(buf), fmt, args);          vsnprintf(buf, sizeof(buf), fmt, args);
         va_end(args);          va_end(args);
   
           /* Display the error locally */
           log("Disconnecting: %.100s", buf);
   
         /* Send the disconnect message to the other side, and wait for it to get sent. */          /* Send the disconnect message to the other side, and wait for it to get sent. */
         if (compat20) {          if (compat20) {
                 packet_start(SSH2_MSG_DISCONNECT);                  packet_start(SSH2_MSG_DISCONNECT);
Line 1240 
Line 1243 
         /* Close the connection. */          /* Close the connection. */
         packet_close();          packet_close();
   
         /* Display the error locally and exit. */  
         log("Disconnecting: %.100s", buf);  
         fatal_cleanup();          fatal_cleanup();
 }  }
   

Legend:
Removed from v.1.98  
changed lines
  Added in v.1.99