[BACK]Return to bufaux.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/bufaux.c between version 1.23 and 1.24

version 1.23, 2002/03/18 17:25:29 version 1.24, 2002/03/26 15:23:40
Line 192 
Line 192 
         /* Get the length. */          /* Get the length. */
         len = buffer_get_int(buffer);          len = buffer_get_int(buffer);
         if (len > 256 * 1024)          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. */          /* Allocate space for the string.  Add one byte for a null character. */
         value = xmalloc(len + 1);          value = xmalloc(len + 1);
         /* Get the string. */          /* Get the string. */

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24