1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/comms/seyon/files/patch-ab
Joerg Wunsch 8c4d374c33 Properly examine the validity of UUCP lock files. This was totally
broken, the locks were always clobbered.
1996-04-04 15:06:22 +00:00

30 lines
739 B
Plaintext

--- SePort.c.orig Thu Apr 4 11:44:26 1996
+++ SePort.c Thu Apr 4 11:51:54 1996
@@ -1011,6 +1011,7 @@
pid_t pid,
lckpid;
char *modemname;
+ int killret;
#if LF_USE_ASCII_PID
char pidstr[20],
lckpidstr[20];
@@ -1077,11 +1078,13 @@
#endif
lockPid = (pid_t) lckpid;
- if (kill(lckpid, 0) == 0) {
- SeErrorF("Device %s is locked by process %d", modem_port, lckpid, "");
- unlink(ltmp);
- return -1;
- }
+ killret = kill(lockPid, 0);
+ if(killret == 0 || (killret == -1 && errno != ESRCH)) {
+ SeErrorF("Device %s is locked by process %d.",
+ modem_port, lckpid, "");
+ unlink(ltmp);
+ return -1;
+ }
}
}