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

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

version 1.98, 2008/07/04 03:47:02 version 1.99, 2008/07/10 18:08:11
Line 1385 
Line 1385 
         u_char *blob, *p;          u_char *blob, *p;
         u_int bloblen, plen;          u_int bloblen, plen;
         u_int32_t seqnr, packets;          u_int32_t seqnr, packets;
         u_int64_t blocks;          u_int64_t blocks, bytes;
   
         debug3("%s: Waiting for new keys", __func__);          debug3("%s: Waiting for new keys", __func__);
   
Line 1418 
Line 1418 
         seqnr = buffer_get_int(&m);          seqnr = buffer_get_int(&m);
         blocks = buffer_get_int64(&m);          blocks = buffer_get_int64(&m);
         packets = buffer_get_int(&m);          packets = buffer_get_int(&m);
         packet_set_state(MODE_OUT, seqnr, blocks, packets);          bytes = buffer_get_int64(&m);
           packet_set_state(MODE_OUT, seqnr, blocks, packets, bytes);
         seqnr = buffer_get_int(&m);          seqnr = buffer_get_int(&m);
         blocks = buffer_get_int64(&m);          blocks = buffer_get_int64(&m);
         packets = buffer_get_int(&m);          packets = buffer_get_int(&m);
         packet_set_state(MODE_IN, seqnr, blocks, packets);          bytes = buffer_get_int64(&m);
           packet_set_state(MODE_IN, seqnr, blocks, packets, bytes);
   
  skip:   skip:
         /* Get the key context */          /* Get the key context */

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