summaryrefslogtreecommitdiff
path: root/bufaux.c
diff options
context:
space:
mode:
Diffstat (limited to 'bufaux.c')
-rw-r--r--bufaux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bufaux.c b/bufaux.c
index 7dafed26e..9fe6da513 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: bufaux.c,v 1.23 2002/03/18 17:25:29 provos Exp $"); 40RCSID("$OpenBSD: bufaux.c,v 1.24 2002/03/26 15:23:40 markus Exp $");
41 41
42#include <openssl/bn.h> 42#include <openssl/bn.h>
43#include "bufaux.h" 43#include "bufaux.h"
@@ -196,7 +196,7 @@ buffer_get_string(Buffer *buffer, u_int *length_ptr)
196 /* Get the length. */ 196 /* Get the length. */
197 len = buffer_get_int(buffer); 197 len = buffer_get_int(buffer);
198 if (len > 256 * 1024) 198 if (len > 256 * 1024)
199 fatal("Received packet with bad string length %d", len); 199 fatal("buffer_get_string: bad string length %d", len);
200 /* Allocate space for the string. Add one byte for a null character. */ 200 /* Allocate space for the string. Add one byte for a null character. */
201 value = xmalloc(len + 1); 201 value = xmalloc(len + 1);
202 /* Get the string. */ 202 /* Get the string. */