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