[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.27 and 1.27.2.1

version 1.27, 2002/06/26 08:53:12 version 1.27.2.1, 2003/04/01 00:12:13
Line 221 
Line 221 
         /* 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("buffer_get_string: bad string length %d", len);                  fatal("buffer_get_string: bad string length %u", 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.27  
changed lines
  Added in v.1.27.2.1