diff options
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/utmp/utent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/utmp/utent.c b/libc/misc/utmp/utent.c index cb5700fc7..597307738 100644 --- a/libc/misc/utmp/utent.c +++ b/libc/misc/utmp/utent.c @@ -100,9 +100,8 @@ static struct utmp *__getutent(int utmp_fd) void endutent(void) { LOCK; - if (static_fd != -1) { + if (static_fd != -1) close(static_fd); - } static_fd = -1; UNLOCK; } @@ -192,6 +191,7 @@ int utmpname (const char *new_ut_name) if (static_fd != -1) close(static_fd); + static_fd = -1; UNLOCK; return 0; } |