=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/bufaux.c,v retrieving revision 1.24.2.3 retrieving revision 1.27.2.1 diff -u -r1.24.2.3 -r1.27.2.1 --- src/usr.bin/ssh/Attic/bufaux.c 2002/06/26 15:30:37 1.24.2.3 +++ src/usr.bin/ssh/Attic/bufaux.c 2003/04/01 00:12:13 1.27.2.1 @@ -37,7 +37,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: bufaux.c,v 1.24.2.3 2002/06/26 15:30:37 jason Exp $"); +RCSID("$OpenBSD: bufaux.c,v 1.27.2.1 2003/04/01 00:12:13 margarida Exp $"); #include #include "bufaux.h" @@ -221,7 +221,7 @@ /* 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. */