]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2002/10/23 10:40:16
authormouring <mouring>
Sat, 9 Nov 2002 15:43:23 +0000 (15:43 +0000)
committermouring <mouring>
Sat, 9 Nov 2002 15:43:23 +0000 (15:43 +0000)
     [bufaux.c]
     %u for u_int

ChangeLog
bufaux.c

index a20d9627afc1292450eabbaf0b24dffa41b3229c..0009a17a1c7e5f67c0aa737b4b589b96f2da1b49 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,9 @@
    - markus@cvs.openbsd.org 2002/10/23 10:32:13
      [packet.c]
      use %u for u_int
+   - markus@cvs.openbsd.org 2002/10/23 10:40:16
+     [bufaux.c]
+     %u for u_int
 
 20021021
  - (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from 
index d3dc674ce4043d1c62abedfb6b1a2903a03afa22..3c276b8105d3e4d43a260b0f076b6a7e0c4c5282 100644 (file)
--- a/bufaux.c
+++ b/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"
@@ -225,7 +225,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. */
This page took 0.040481 seconds and 5 git commands to generate.