[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.18.2.1 and 1.19

version 1.18.2.1, 2004/02/28 03:51:32 version 1.19, 2003/09/18 07:54:48
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",
Line 169 
Line 169 
 void  void
 buffer_dump(Buffer *buffer)  buffer_dump(Buffer *buffer)
 {  {
         u_int i;          int i;
         u_char *ucp = buffer->buf;          u_char *ucp = buffer->buf;
   
         for (i = buffer->offset; i < buffer->end; i++) {          for (i = buffer->offset; i < buffer->end; i++) {

Legend:
Removed from v.1.18.2.1  
changed lines
  Added in v.1.19