From aaaab475d7e67af362d4597c9d26553a0f80ae01 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 15 Sep 2001 08:49:46 +0000 Subject: Oops --- libc/misc/file/lockf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/misc/file') diff --git a/libc/misc/file/lockf.c b/libc/misc/file/lockf.c index 3d6f46290..f95b24fac 100644 --- a/libc/misc/file/lockf.c +++ b/libc/misc/file/lockf.c @@ -43,7 +43,7 @@ int lockf (int fd, int cmd, off_t len) fl.l_type = F_RDLCK; if (fcntl (fd, F_GETLK, &fl) < 0) return -1; - if (fl.l_type == F_UNLCK || fl.l_pid == __getpid ()) + if (fl.l_type == F_UNLCK || fl.l_pid == getpid ()) return 0; __set_errno(EACCES); return -1; -- cgit v1.2.3