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

  1. Agrumpy.314
  2. NET.v7bugs
  3. utzoo!duke!unc!grumpy!smb
  4. Sun Aug 24 21:18:23 1980
  5. learn bugs
  6. There are a few bugs in the distributed learn:
  7.     a) When a sub-shell is invoked by makpipe.c, its output on file 2
  8.        is going direct to the terminal rather than through a pipe; this
  9.        can cause prompts to be intermixed with other output.  Fix:  in
  10.        makpipe.c, in the fork that will actually invoke the shell, close
  11.        file 2 and dup(1).
  12.  
  13.     b) In the distributed PDP 11 version (though not in UCB VAX UNIX),
  14.        routine start.c uses its own structure to describe a directory;
  15.        this structure in turn gives the type of an i-node as "int", which
  16.        causes portability problems on 32-bit machines.
  17.  
  18.     c) In tee.c, a single character is read into the &i, which is an "int";
  19.        this value is then used as the argument to putc.  While this code
  20.        works properly on PDP-11s and VAXes, it fails on any machine
  21.        where the bytes aren't backwards.
  22.