summaryrefslogtreecommitdiff
path: root/monitor_wrap.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-26 03:20:45 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-26 03:20:45 +0000
commitc861547f34615e2ae24d42b61279faa6271d37fd (patch)
tree2552da3096d1b3aec398e52e11bf2b76c2fe58d8 /monitor_wrap.c
parent0936a5bb7267b0c0d688c2692224ba571caa8a0d (diff)
- stevesk@cvs.openbsd.org 2002/03/25 20:12:10
[monitor_mm.c monitor_wrap.c] ssize_t args use "%ld" and cast to (long) size_t args use "%lu" and cast to (u_long) ok markus@ and thanks millert@
Diffstat (limited to 'monitor_wrap.c')
-rw-r--r--monitor_wrap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/monitor_wrap.c b/monitor_wrap.c
index 8b0ded190..53bf59b5b 100644
--- a/monitor_wrap.c
+++ b/monitor_wrap.c
@@ -25,7 +25,7 @@
25 */ 25 */
26 26
27#include "includes.h" 27#include "includes.h"
28RCSID("$OpenBSD: monitor_wrap.c,v 1.4 2002/03/19 14:27:39 markus Exp $"); 28RCSID("$OpenBSD: monitor_wrap.c,v 1.5 2002/03/25 20:12:10 stevesk Exp $");
29 29
30#include <openssl/bn.h> 30#include <openssl/bn.h>
31#include <openssl/dh.h> 31#include <openssl/dh.h>
@@ -88,7 +88,7 @@ mm_request_receive(int socket, Buffer *m)
88 if (res != sizeof(buf)) { 88 if (res != sizeof(buf)) {
89 if (res == 0) 89 if (res == 0)
90 fatal_cleanup(); 90 fatal_cleanup();
91 fatal("%s: read: %d", __FUNCTION__, res); 91 fatal("%s: read: %ld", __FUNCTION__, (long)res);
92 } 92 }
93 msg_len = GET_32BIT(buf); 93 msg_len = GET_32BIT(buf);
94 if (msg_len > 256 * 1024) 94 if (msg_len > 256 * 1024)
@@ -97,7 +97,7 @@ mm_request_receive(int socket, Buffer *m)
97 buffer_append_space(m, msg_len); 97 buffer_append_space(m, msg_len);
98 res = atomicio(read, socket, buffer_ptr(m), msg_len); 98 res = atomicio(read, socket, buffer_ptr(m), msg_len);
99 if (res != msg_len) 99 if (res != msg_len)
100 fatal("%s: read: %d != msg_len", __FUNCTION__, res); 100 fatal("%s: read: %ld != msg_len", __FUNCTION__, (long)res);
101} 101}
102 102
103void 103void