diff options
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 cc387a544..c0dd9ea9c 100644 --- a/roaming_client.c +++ b/roaming_client.c | |||
@@ -17,7 +17,7 @@ | |||
17 | 17 | ||
18 | #include "includes.h" | 18 | #include "includes.h" |
19 | 19 | ||
20 | #include <sys/queue.h> | 20 | #include "openbsd-compat/sys-queue.h" |
21 | #include <sys/types.h> | 21 | #include <sys/types.h> |
22 | #include <sys/socket.h> | 22 | #include <sys/socket.h> |
23 | 23 | ||
@@ -122,7 +122,7 @@ roaming_auth_required(void) | |||
122 | calculate_new_key(&key1, cookie, chall); | 122 | calculate_new_key(&key1, cookie, chall); |
123 | calculate_new_key(&key2, cookie, chall); | 123 | calculate_new_key(&key2, cookie, chall); |
124 | 124 | ||
125 | debug("Received %llu bytes", (long long unsigned)get_recv_bytes()); | 125 | debug("Received %llu bytes", (unsigned long long)get_recv_bytes()); |
126 | debug("Sent roaming_auth packet"); | 126 | debug("Sent roaming_auth packet"); |
127 | } | 127 | } |
128 | 128 | ||
@@ -216,7 +216,7 @@ roaming_resume(void) | |||
216 | goto fail; | 216 | goto fail; |
217 | } | 217 | } |
218 | recv_bytes = packet_get_int64() ^ oldkey2; | 218 | recv_bytes = packet_get_int64() ^ oldkey2; |
219 | debug("Peer received %llu bytes", (long long unsigned)recv_bytes); | 219 | debug("Peer received %llu bytes", (unsigned long long)recv_bytes); |
220 | resend_bytes(packet_get_connection_out(), &recv_bytes); | 220 | resend_bytes(packet_get_connection_out(), &recv_bytes); |
221 | 221 | ||
222 | resume_in_progress = 0; | 222 | resume_in_progress = 0; |