]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2002/03/26 15:23:40
authormouring <mouring>
Wed, 27 Mar 2002 17:23:44 +0000 (17:23 +0000)
committermouring <mouring>
Wed, 27 Mar 2002 17:23:44 +0000 (17:23 +0000)
     [bufaux.c]
     do not talk about packets in bufaux

ChangeLog
bufaux.c

index 73eddbea80b31af8e821959624c648bdca07c3dd..edfd848b2d8ba9ff888c2f7b91acb5066450b1b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,9 @@
    - markus@cvs.openbsd.org 2002/03/26 11:37:05
      [ssh.c]
      update Copyright
+   - markus@cvs.openbsd.org 2002/03/26 15:23:40
+     [bufaux.c]
+     do not talk about packets in bufaux
 
 20020325
  - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h"
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.049166 seconds and 5 git commands to generate.