]> andersk Git - openssh.git/blobdiff - roaming_client.c
- tedu@cvs.openbsd.org 2010/01/17 21:49:09
[openssh.git] / roaming_client.c
index cc387a5440a2fcc0d5b2652498aa4679fbcef19a..c0dd9ea9c9f45a4a93f3ce9f9c343bd4a52272cf 100644 (file)
@@ -17,7 +17,7 @@
 
 #include "includes.h"
 
-#include <sys/queue.h>
+#include "openbsd-compat/sys-queue.h"
 #include <sys/types.h>
 #include <sys/socket.h>
 
@@ -122,7 +122,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");
 }
 
@@ -216,7 +216,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;
This page took 0.03175 seconds and 4 git commands to generate.