diff options
author | tim <tim> | 2010-01-17 00:48:39 +0000 |
---|---|---|
committer | tim <tim> | 2010-01-17 00:48:39 +0000 |
commit | 9308428b068711fdb0ce385512276fae19f3f253 (patch) | |
tree | e966c1a0599e53960b406c02e8c1f7a88be16d12 /roaming_client.c | |
parent | 46d9ff629e2810778677bb32ec2b87dfac79fcf8 (diff) | |
download | openssh-9308428b068711fdb0ce385512276fae19f3f253.tar.gz |
- (tim) [roaming_client.c] Use of <sys/queue.h> is not really portable so
we use "openbsd-compat/sys-queue.h"
Diffstat (limited to 'roaming_client.c')
-rw-r--r-- | roaming_client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roaming_client.c b/roaming_client.c index cc387a54..c0dd9ea9 100644 --- a/roaming_client.c +++ b/roaming_client.c @@ -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; |