home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / os / linux / 8797 < prev    next >
Encoding:
Text File  |  1992-08-21  |  1.1 KB  |  36 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!unislc!erc
  3. From: erc@unislc.uucp (Ed Carp)
  4. Subject: Re: UUCICO doesn't fail properly
  5. X-Newsreader: Tin 1.1 PL5
  6. References: <1992Aug21.035439.7544@bnr.ca>
  7. Message-ID: <1992Aug21.175004.17736@unislc.uucp>
  8. Organization: Unisys Corporation SLC
  9. Date: Fri, 21 Aug 1992 17:50:04 GMT
  10. Lines: 24
  11.  
  12. Corey Minyard (minyard@bnr.ca) wrote:
  13.  
  14. : I had the same problem with uucico, it did not time out on failure to
  15. : get in to the remote end.  It turns out the signal handler did not
  16. : set up interrupts to stop the read.  The fix is in the file sys1.c,
  17. : you should find the line:
  18. :         s.sa_flags = 0;
  19. : and change it to:
  20. :     #ifdef SA_INTERRUPT
  21. :         s.sa_flags = SA_INTERRUPT;
  22. :     #else
  23. :         s.sa_flags = 0;
  24. :     #endif
  25.  
  26. I thought that was fixed. :(  I'll pass along the patch to Ian.  Thanks!
  27. -- 
  28. Ed Carp, N7EKG     erc@apple.com                801/538-0177
  29. "This is the final task I will ever give you, and it  goes  on  forever.   Act
  30. happy, feel happy, be happy, without a reason in the world. Then you can love,
  31. and do what you will."           -- Dan Millman, "Way Of The Peaceful Warrior"
  32.