summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-27 17:23:44 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-27 17:23:44 +0000
commitcd8bbce80beaea59996d79d3ad91d6f9922257f1 (patch)
tree11c7822987cd2e391301856692332413ec9585bf
parenteb041dca1f313a1d80952210453058de15761234 (diff)
- markus@cvs.openbsd.org 2002/03/26 15:23:40
[bufaux.c] do not talk about packets in bufaux
-rw-r--r--ChangeLog5
-rw-r--r--bufaux.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fa420b88b..7047fd903 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,9 @@
8 - markus@cvs.openbsd.org 2002/03/26 11:37:05 8 - markus@cvs.openbsd.org 2002/03/26 11:37:05
9 [ssh.c] 9 [ssh.c]
10 update Copyright 10 update Copyright
11 - markus@cvs.openbsd.org 2002/03/26 15:23:40
12 [bufaux.c]
13 do not talk about packets in bufaux
11 14
1220020325 1520020325
13 - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h" 16 - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h"
@@ -8071,4 +8074,4 @@
8071 - Wrote replacements for strlcpy and mkdtemp 8074 - Wrote replacements for strlcpy and mkdtemp
8072 - Released 1.0pre1 8075 - Released 1.0pre1
8073 8076
8074$Id: ChangeLog,v 1.1994 2002/03/27 17:20:38 mouring Exp $ 8077$Id: ChangeLog,v 1.1995 2002/03/27 17:23:44 mouring Exp $
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. */