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

Diff for /src/usr.bin/ssh/Attic/radix.c between version 1.5 and 1.6

version 1.5, 1999/11/24 00:26:02 version 1.6, 1999/11/24 19:53:49
Line 74 
Line 74 
         while (*bufcoded == ' ' || *bufcoded == '\t')          while (*bufcoded == ' ' || *bufcoded == '\t')
                 bufcoded++;                  bufcoded++;
   
         /* Figure out how many characters are in the input buffer. If this          /*
            would decode into more bytes than would fit into the output           * Figure out how many characters are in the input buffer. If this
            buffer, adjust the number of input bytes downwards. */           * would decode into more bytes than would fit into the output
            * buffer, adjust the number of input bytes downwards.
            */
         bufin = bufcoded;          bufin = bufcoded;
         while (DEC(*(bufin++)) <= MAXVAL);          while (DEC(*(bufin++)) <= MAXVAL);
         nprbytes = bufin - bufcoded - 1;          nprbytes = bufin - bufcoded - 1;

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6