summaryrefslogtreecommitdiff
path: root/bufaux.c
diff options
context:
space:
mode:
authormouring <mouring>2002-03-27 17:23:44 +0000
committermouring <mouring>2002-03-27 17:23:44 +0000
commit5a241972c54d709f6dd105da1f870f045b3f58a6 (patch)
tree5679493d2f5ef3949f12aa48467e6772d9a5ec91 /bufaux.c
parent1be07527cde5759a3112622b982d0b2aa73ba9db (diff)
downloadopenssh-5a241972c54d709f6dd105da1f870f045b3f58a6.tar.gz
- markus@cvs.openbsd.org 2002/03/26 15:23:40
[bufaux.c] do not talk about packets in bufaux
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 7dafed26..9fe6da51 100644
--- 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. */