]> andersk Git - openssh.git/commitdiff
- dtucker@cvs.openbsd.org 2010/01/09 05:17:00
authordtucker <dtucker>
Sat, 9 Jan 2010 11:27:06 +0000 (11:27 +0000)
committerdtucker <dtucker>
Sat, 9 Jan 2010 11:27:06 +0000 (11:27 +0000)
     [roaming_client.c]
     Remove a PRIu64 format string that snuck in with roaming.  ok djm@

ChangeLog
roaming_client.c

index b3ae6bdb48d996e47508cd0f20c6b9949278345b..9eda2f3961f51d39576aa231ec68229bab441dcf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,9 @@
      [mux.c sshpty.h clientloop.c sshtty.c]
      quell tc[gs]etattr warnings when forcing a tty (ssh -tt), since we
      usually don't actually have a tty to read/set; bz#1686 ok dtucker@
+   - dtucker@cvs.openbsd.org 2010/01/09 05:17:00
+     [roaming_client.c]
+     Remove a PRIu64 format string that snuck in with roaming.  ok djm@
 
 20091208
  - (dtucker) OpenBSD CVS Sync
index c80db5826094b54a6b8f991f998f95d36cd151ec..cc387a5440a2fcc0d5b2652498aa4679fbcef19a 100644 (file)
@@ -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
  *
@@ -122,7 +122,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");
 }
 
@@ -216,7 +216,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;
This page took 0.062856 seconds and 5 git commands to generate.