From 1603e05e8b24862fe3d2a2d6b9186d43ccf23e09 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Thu, 27 Aug 1981 00:24:44 -0800 Subject: [PATCH] missing unlock on hunt returning -1: normally seen timed out opens SCCS-vsn: usr.bin/tip/tip.c 4.8 --- usr/src/usr.bin/tip/tip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.20.1