home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Bug_Fixes / Net.v7bugs / 0005 < prev    next >
Encoding:
Text File  |  1981-05-14  |  569 b   |  18 lines

  1. Aucbvax.117
  2. NET.v7bugs
  3. utzoo!duke!vax135!ucbvax!mark
  4. Tue May 27 23:39:00 1980
  5. uux bug
  6. A bug in uux prevents the - option from working with binary files.
  7. To fix it, in uux.c, search for "fputs".  (It's in an if (pipein) {.)
  8. replace the fgets/fputs loop by
  9.         while ((c = getc(stdin)) != EOF)
  10.             putc(c, fpd);
  11. and declare c somewhere to be an int.  (I put the line
  12.         register int c;
  13. right after the if (pipein).)
  14.  
  15. Fixing this bug will allow the new uusend program, which will be released
  16. shortly, to work, allowing the transfer of binary files across indirect
  17. uucp links.
  18.