[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.56 and 1.57

version 1.56, 2014/02/02 03:44:31 version 1.57, 2014/04/16 23:22:45
Line 370 
Line 370 
   
         if (l > 8 * 1024)          if (l > 8 * 1024)
                 fatal("%s: length %u too long", __func__, l);                  fatal("%s: length %u too long", __func__, l);
           /* Skip leading zero bytes */
           for (; l > 0 && *s == 0; l--, s++)
                   ;
         p = buf = xmalloc(l + 1);          p = buf = xmalloc(l + 1);
         /*          /*
          * If most significant bit is set then prepend a zero byte to           * If most significant bit is set then prepend a zero byte to

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.57