home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Bug_Fixes / Net.v7bugs / 0064 < prev    next >
Encoding:
Text File  |  1982-01-20  |  1.1 KB  |  39 lines

  1. Autah-cs.167
  2. net.bugs.v7
  3. utcsrgv!utzoo!decvax!ucbvax!mhtsa!harpo!utah-cs!lepreau
  4. Wed Jan 20 00:03:10 1982
  5. Minor uucp fix
  6. While i'm sending out uucp fixes, here's a not very important one. This
  7. applies to 4.1 and v7, and i presume 2.8.  The fix given is for 4.1, but
  8. the line numbers will be off because we've made some local changes. It
  9. goes in after the 'case 3: \n case4:'.
  10.  
  11. Fix bug in that it did not prefix the current directory to non-absolute
  12. pathnames for type 3 & 4 transfers (remote execution, remote globbing).
  13. This was contrary to man entry, as well as inconsistent.
  14. Change listing:
  15. -----------------------
  16. *** .Ouucp.c    Sat Nov 14 17:08:44 1981
  17. --- uucp.c    Sat Nov 14 17:23:27 1981
  18. ***************
  19. *** 287,288
  20.           DEBUG(4, "send uucp command - %d\n", type);
  21.           if (strcmp(s2,  Myname) == SAME) {
  22.  
  23. --- 287,290 -----
  24.           DEBUG(4, "send uucp command - %d\n", type);
  25. +         if (file1[0] != '~')
  26. +             expfile(file1);
  27.           if (strcmp(s2,  Myname) == SAME) {
  28. ***************
  29. *** 294,295
  30.           }
  31.           if (Ename[0] != '\0') {
  32.  
  33. --- 296,299 -----
  34.           }
  35. +         else if (file2[0] != '~')
  36. +             expfile(file2);
  37.           if (Ename[0] != '\0') {
  38. ---------------------
  39.