[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.8 and 1.9

version 1.8, 2000/12/19 23:17:59 version 1.9, 2001/02/07 08:54:16
Line 63 
Line 63 
 {  {
         u_char *buf = xmalloc(2*len);          u_char *buf = xmalloc(2*len);
         int i, n;          int i, n;
   
         n = uuencode(data, len, buf, 2*len);          n = uuencode(data, len, buf, 2*len);
         for (i = 0; i < n; i++) {          for (i = 0; i < n; i++) {
                 fprintf(fp, "%c", buf[i]);                  fprintf(fp, "%c", buf[i]);

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9