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

Diff for /src/usr.bin/ssh/Attic/uuencode.c between version 1.12 and 1.13

version 1.12, 2001/03/01 02:27:18 version 1.13, 2002/02/24 18:31:09
Line 52 
Line 52 
                 ;                  ;
         for (; *p != '\0' && *p != ' ' && *p != '\t'; p++)          for (; *p != '\0' && *p != ' ' && *p != '\t'; p++)
                 ;                  ;
         /* and remote trailing whitespace because __b64_pton needs this */          /* and remove trailing whitespace because __b64_pton needs this */
         *p = '\0';          *p = '\0';
         len = __b64_pton(encoded, target, targsize);          len = __b64_pton(encoded, target, targsize);
         xfree(encoded);          xfree(encoded);

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13