]> andersk Git - openssh.git/blobdiff - bufaux.c
- (bal) Added MAP_FAILED to allow AIX and Trusted HP to compile.
[openssh.git] / bufaux.c
index 7dafed26e59ae657e0509a4f482edf9f22adb425..9fe6da513afb170e09a7c777f156877f3965a9b6 100644 (file)
--- a/bufaux.c
+++ b/bufaux.c
@@ -37,7 +37,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: bufaux.c,v 1.23 2002/03/18 17:25:29 provos Exp $");
+RCSID("$OpenBSD: bufaux.c,v 1.24 2002/03/26 15:23:40 markus Exp $");
 
 #include <openssl/bn.h>
 #include "bufaux.h"
@@ -196,7 +196,7 @@ buffer_get_string(Buffer *buffer, u_int *length_ptr)
        /* Get the length. */
        len = buffer_get_int(buffer);
        if (len > 256 * 1024)
-               fatal("Received packet with bad string length %d", len);
+               fatal("buffer_get_string: bad string length %d", len);
        /* Allocate space for the string.  Add one byte for a null character. */
        value = xmalloc(len + 1);
        /* Get the string. */
This page took 0.264469 seconds and 4 git commands to generate.