diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2010-01-18 01:50:28 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2010-01-18 01:50:28 +0000 |
commit | e4b5e9391945edbcb596cf9f3c3814b8f7f4e2ea (patch) | |
tree | 0d56b10dd87322cc2f5cf081f276c2326fec3497 /usr.bin | |
parent | fc4ba086eeb7a0d7b4d8ced889792260847a37f9 (diff) |
s/long long unsigned/unsigned long long/, from tim via portable
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/roaming_client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/roaming_client.c b/usr.bin/ssh/roaming_client.c index 72ee1a018ce..ef3408fc5b2 100644 --- a/usr.bin/ssh/roaming_client.c +++ b/usr.bin/ssh/roaming_client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roaming_client.c,v 1.2 2010/01/09 05:17:00 dtucker Exp $ */ +/* $OpenBSD: roaming_client.c,v 1.3 2010/01/18 01:50:27 dtucker Exp $ */ /* * Copyright (c) 2004-2009 AppGate Network Security AB * @@ -118,7 +118,7 @@ roaming_auth_required(void) calculate_new_key(&key1, 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"); } @@ -212,7 +212,7 @@ roaming_resume(void) goto fail; } 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); resume_in_progress = 0; |