]> andersk Git - openssh.git/commitdiff
- (tim) [roaming_client.c] Use of <sys/queue.h> is not really portable so
authortim <tim>
Sun, 17 Jan 2010 00:48:39 +0000 (00:48 +0000)
committertim <tim>
Sun, 17 Jan 2010 00:48:39 +0000 (00:48 +0000)
   we use "openbsd-compat/sys-queue.h"

ChangeLog
roaming_client.c

index 00d78c698ab634050fa36785d907515382357142..145955680203fda58c667e9f612be2508c2db96f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,8 @@
  - (tim) [regress/portnum.sh] Shell portability fix.
  - (tim) [configure.ac] Define BROKEN_GETADDRINFO on SVR5 systems. The native
    getaddrinfo() is too old and limited for addr_pton() in addrmatch.c.
+ - (tim) [roaming_client.c] Use of <sys/queue.h> is not really portable so
+   we use "openbsd-compat/sys-queue.h"
 
 20100115
  - (dtucker) OpenBSD CVS Sync
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.061341 seconds and 5 git commands to generate.