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

Diff for /src/usr.bin/ssh/Attic/roaming_client.c between version 1.2 and 1.3

version 1.2, 2010/01/09 05:17:00 version 1.3, 2010/01/18 01:50:27
Line 118 
Line 118 
         calculate_new_key(&key1, cookie, chall);          calculate_new_key(&key1, cookie, chall);
         calculate_new_key(&key2, cookie, chall);          calculate_new_key(&key2, cookie, chall);
   
         debug("Received %llu bytes", (long long unsigned)get_recv_bytes());          debug("Received %llu bytes", (unsigned long long)get_recv_bytes());
         debug("Sent roaming_auth packet");          debug("Sent roaming_auth packet");
 }  }
   
Line 212 
Line 212 
                 goto fail;                  goto fail;
         }          }
         recv_bytes = packet_get_int64() ^ oldkey2;          recv_bytes = packet_get_int64() ^ oldkey2;
         debug("Peer received %llu bytes", (long long unsigned)recv_bytes);          debug("Peer received %llu bytes", (unsigned long long)recv_bytes);
         resend_bytes(packet_get_connection_out(), &recv_bytes);          resend_bytes(packet_get_connection_out(), &recv_bytes);
   
         resume_in_progress = 0;          resume_in_progress = 0;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3