summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-10-23 10:40:16 +0000
committermarkus <markus@openbsd.org>2002-10-23 10:40:16 +0000
commitc2de1649e74efeb38f78409840a04d4405d0ecff (patch)
tree6bb08e518b1bcb4e1c8f3664fbd93e0922f2670e
parentuse %u for u_int (diff)
downloadwireguard-openbsd-c2de1649e74efeb38f78409840a04d4405d0ecff.tar.xz
wireguard-openbsd-c2de1649e74efeb38f78409840a04d4405d0ecff.zip
%u for u_int
-rw-r--r--usr.bin/ssh/bufaux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/bufaux.c b/usr.bin/ssh/bufaux.c
index 5e8254e5606..783580a8f2d 100644
--- a/usr.bin/ssh/bufaux.c
+++ b/usr.bin/ssh/bufaux.c
@@ -37,7 +37,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: bufaux.c,v 1.27 2002/06/26 08:53:12 markus Exp $");
+RCSID("$OpenBSD: bufaux.c,v 1.28 2002/10/23 10:40:16 markus Exp $");
#include <openssl/bn.h>
#include "bufaux.h"
@@ -221,7 +221,7 @@ buffer_get_string(Buffer *buffer, u_int *length_ptr)
/* Get the length. */
len = buffer_get_int(buffer);
if (len > 256 * 1024)
- fatal("buffer_get_string: bad string length %d", len);
+ fatal("buffer_get_string: bad string length %u", len);
/* Allocate space for the string. Add one byte for a null character. */
value = xmalloc(len + 1);
/* Get the string. */