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

Diff for /src/usr.bin/ssh/Attic/buffer.c between version 1.20 and 1.21

version 1.20, 2003/09/19 09:03:00 version 1.21, 2003/11/21 11:57:03
Line 105 
Line 105 
                 goto restart;                  goto restart;
         }          }
         /* Increase the size of the buffer and retry. */          /* Increase the size of the buffer and retry. */
   
         newlen = buffer->alloc + len + 32768;          newlen = buffer->alloc + len + 32768;
         if (newlen > 0xa00000)          if (newlen > 0xa00000)
                 fatal("buffer_append_space: alloc %u not supported",                  fatal("buffer_append_space: alloc %u not supported",

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21