]> git.ozlabs.org Git - ppp.git/commitdiff
try to cope gracefully with the situation where someone else
authorPaul Mackerras <paulus@samba.org>
Fri, 16 Apr 1999 11:34:27 +0000 (11:34 +0000)
committerPaul Mackerras <paulus@samba.org>
Fri, 16 Apr 1999 11:34:27 +0000 (11:34 +0000)
has locked the serial line for us.

pppd/utils.c

index bec5f89158c8bb6f265e5208b444d8e661cfc612..7c42ce6290ec3590cd3cd3a73ac0c18581eee235 100644 (file)
@@ -17,7 +17,7 @@
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 #ifndef lint
-static char rcsid[] = "$Id: utils.c,v 1.1 1999/04/12 06:24:53 paulus Exp $";
+static char rcsid[] = "$Id: utils.c,v 1.2 1999/04/16 11:34:27 paulus Exp $";
 #endif
 
 #include <stdio.h>
@@ -773,7 +773,9 @@ lock(char *dev)
        lock_buffer[n] = 0;
        pid = atoi(lock_buffer);
 #endif /* LOCK_BINARY */
-       if (pid == 0 || pid == getpid()
+       if (pid == getpid())
+           return 1;           /* somebody else locked it for us */
+       if (pid == 0
            || (kill(pid, 0) == -1 && errno == ESRCH)) {
            if (unlink (lock_file) == 0) {
                notice("Removed stale lock on %s (pid %d)", dev, pid);