diff options
Diffstat (limited to 'libc/misc/utmp/wtent.c')
-rw-r--r-- | libc/misc/utmp/wtent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/utmp/wtent.c b/libc/misc/utmp/wtent.c index bfedeaa70..35947f19e 100644 --- a/libc/misc/utmp/wtent.c +++ b/libc/misc/utmp/wtent.c @@ -52,9 +52,9 @@ extern void updwtmp(const char *wtmp_file, const struct utmp *lutmp) fd = __open(wtmp_file, O_APPEND | O_WRONLY, 0); if (fd >= 0) { - if (lockf(fd, F_LOCK, 0)==0) { + if (__lockf(fd, F_LOCK, 0)==0) { __write(fd, (const char *) lutmp, sizeof(struct utmp)); - lockf(fd, F_ULOCK, 0); + __lockf(fd, F_ULOCK, 0); __close(fd); } } |