[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.36 and 1.37

version 1.36, 2003/04/01 10:22:21 version 1.37, 2003/04/02 09:48:07
Line 1462 
Line 1462 
         Buffer m;          Buffer m;
         u_char *blob, *p;          u_char *blob, *p;
         u_int bloblen, plen;          u_int bloblen, plen;
           u_int32_t seqnr, packets;
           u_int64_t blocks;
   
         debug3("%s: Waiting for new keys", __func__);          debug3("%s: Waiting for new keys", __func__);
   
Line 1491 
Line 1493 
         xfree(blob);          xfree(blob);
   
         /* Now get sequence numbers for the packets */          /* Now get sequence numbers for the packets */
         packet_set_seqnr(MODE_OUT, buffer_get_int(&m));          seqnr = buffer_get_int(&m);
         packet_set_seqnr(MODE_IN, buffer_get_int(&m));          blocks = buffer_get_int64(&m);
           packets = buffer_get_int(&m);
           packet_set_state(MODE_OUT, seqnr, blocks, packets);
           seqnr = buffer_get_int(&m);
           blocks = buffer_get_int64(&m);
           packets = buffer_get_int(&m);
           packet_set_state(MODE_IN, seqnr, blocks, packets);
   
  skip:   skip:
         /* Get the key context */          /* Get the key context */

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37