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

Diff for /src/usr.bin/ssh/channels.c between version 1.178 and 1.179

version 1.178, 2002/06/24 14:33:27 version 1.179, 2002/06/26 08:55:02
Line 229 
Line 229 
                 /* There are no free slots.  Take last+1 slot and expand the array.  */                  /* There are no free slots.  Take last+1 slot and expand the array.  */
                 found = channels_alloc;                  found = channels_alloc;
                 channels_alloc += 10;                  channels_alloc += 10;
                   if (channels_alloc > 10000)
                           fatal("channel_new: internal error: channels_alloc %d "
                               "too big.", channels_alloc);
                 debug2("channel: expanding %d", channels_alloc);                  debug2("channel: expanding %d", channels_alloc);
                 channels = xrealloc(channels, channels_alloc * sizeof(Channel *));                  channels = xrealloc(channels, channels_alloc * sizeof(Channel *));
                 for (i = found; i < channels_alloc; i++)                  for (i = found; i < channels_alloc; i++)

Legend:
Removed from v.1.178  
changed lines
  Added in v.1.179