From owner-freebsd-commit Wed Sep 20 05:56:39 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA01485 for freebsd-commit-outgoing; Wed, 20 Sep 1995 05:56:39 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA01472 for cvs-all-outgoing; Wed, 20 Sep 1995 05:56:35 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA01462 for cvs-sbin-outgoing; Wed, 20 Sep 1995 05:56:34 -0700 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA01453 ; Wed, 20 Sep 1995 05:56:28 -0700 Date: Wed, 20 Sep 1995 05:56:28 -0700 From: "Andrey A. Chernov" Message-Id: <199509201256.FAA01453@freefall.freebsd.org> To: CVS-commiters, cvs-sbin Subject: cvs commit: src/sbin/slattach Makefile slattach.c uucplock.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/09/20 05:56:28 Modified: sbin/slattach Makefile slattach.c Removed: sbin/slattach uucplock.c Log: From Bruce: slattach always exited early because fd is not open in acquire_line(). Other (trivial) changes that I've been neglecting for some time: - Turn off O_NONBLOCK so that `chat' doesn't need to worry about it (`chat' actually does worry about it). - Really set speeds POSIXly :-). cfsetspeed() isn't POSIX. - Fix spelling error in comment. - Gripe about bad programming of doing everything from signal handlers. slattach should be written to do everything from the sigsuspend() loop, but I don't want to do it :-). From me: Use .PATH to find uucplock.c Submitted by: bde