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

  1. Autzoo.855
  2. net.v7bugs,NET.v7bugs
  3. utzoo!henry
  4. Wed Aug  5 21:04:34 1981
  5. uucp break-sending speed
  6. V7 uucp (actually, uucico) sends BREAK by dropping the speed momentarily
  7. (to the value specified by Bspeed) and transmitting NULs.  The value
  8. of Bspeed is 150 baud, which is reasonable.  BUG:  Bspeed is initialized
  9. to "150", NOT "B150".  Fix:  make the change, in the declaration of
  10. Bspeed in uucpdefs.h.  This introduces one problem:  uucpdefs.h now needs
  11. the system include file sgtty.h (for the definition of B150).  Either
  12. one can run around putting "#include <sgtty.h>" in all six uucp source
  13. files that include uucpdefs.h, or one can put the include in uucpdefs.h
  14. and delete any independent includes of sgtty.h in source files that also
  15. pick up uucpdefs.h (there is only one such, in cico.c).  The former may
  16. be cleaner, the latter is easier.
  17.  
  18. Thanks to Ron Gomes of Human Computing Resources, who noticed this.
  19.