diff options
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/utmp/wtent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/utmp/wtent.c b/libc/misc/utmp/wtent.c index 97254262f..9b3ad5084 100644 --- a/libc/misc/utmp/wtent.c +++ b/libc/misc/utmp/wtent.c @@ -40,7 +40,7 @@ static void __updwtmp(const char *wtmp_file, const struct utmp *lutmp) { int fd; - fd = open_not_cancel(wtmp_file, O_APPEND | O_WRONLY, 0); + fd = open_not_cancel_2(wtmp_file, O_APPEND | O_WRONLY); if (fd >= 0) { if (lockf(fd, F_LOCK, 0) == 0) { write_not_cancel(fd, lutmp, sizeof(struct utmp)); |