summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2010-01-09 05:17:01 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2010-01-09 05:17:01 +0000
commitd2782fe7b87832bcc450bd448323f0870474b077 (patch)
tree4be846bde44075919e27e2e44af8250ec660f76e /usr.bin
parent2a66c18d202af015a42720e2062350421764580a (diff)
Remove a PRIu64 format string that snuck in with roaming. ok djm@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/roaming_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/roaming_client.c b/usr.bin/ssh/roaming_client.c
index b77dbd59b9a..72ee1a018ce 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.1 2009/10/24 11:22:37 andreas Exp $ */
+/* $OpenBSD: roaming_client.c,v 1.2 2010/01/09 05:17:00 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 %" PRIu64 " bytes", get_recv_bytes());
+ debug("Received %llu bytes", (long long unsigned)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 %" PRIu64 " bytes", recv_bytes);
+ debug("Peer received %llu bytes", (long long unsigned)recv_bytes);
resend_bytes(packet_get_connection_out(), &recv_bytes);
resume_in_progress = 0;