[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.35 and 1.36

version 1.35, 2003/04/01 10:10:23 version 1.36, 2003/04/01 10:22:21
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 1493 
Line 1491 
         xfree(blob);          xfree(blob);
   
         /* Now get sequence numbers for the packets */          /* Now get sequence numbers for the packets */
         seqnr = buffer_get_int(&m);          packet_set_seqnr(MODE_OUT, buffer_get_int(&m));
         blocks = buffer_get_int64(&m);          packet_set_seqnr(MODE_IN, buffer_get_int(&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.35  
changed lines
  Added in v.1.36