From: Sam Leffler Date: Thu, 27 Aug 1981 08:24:44 +0000 (-0800) Subject: missing unlock on hunt returning -1: normally seen timed out opens X-Git-Tag: BSD-4_1_snap-Snapshot-Development~953 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/1603e05e8b24862fe3d2a2d6b9186d43ccf23e09 missing unlock on hunt returning -1: normally seen timed out opens SCCS-vsn: usr.bin/tip/tip.c 4.8 --- diff --git a/usr/src/usr.bin/tip/tip.c b/usr/src/usr.bin/tip/tip.c index 5b80ffc885..03af0d0135 100644 --- a/usr/src/usr.bin/tip/tip.c +++ b/usr/src/usr.bin/tip/tip.c @@ -1,4 +1,4 @@ -/* tip.c 4.7 81/08/16 */ +/* tip.c 4.8 81/08/26 */ /* * tip - Unix link to other systems * tip [-v] [-speed] system-name @@ -94,6 +94,7 @@ char *argv[]; } if (i == -1) { printf("link down\n"); + delock(uucplock); exit(3); } setbuf(stdout, NULL);