It should be "if" not "is".

Signed-off-by: Samanta Navarro <ferivoz@riseup.net>
This commit is contained in:
Samanta Navarro 2023-02-16 11:53:52 +00:00 committed by Serge Hallyn
parent d5d1932370
commit b8ea76ba72
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ int user_busy (const char *name, uid_t uid)
/* On Linux, directly parse /proc */
return user_busy_processes (name, uid);
#else /* !__linux__ */
/* If we cannot rely on /proc, check is there is a record in utmp
/* If we cannot rely on /proc, check if there is a record in utmp
* indicating that the user is still logged in */
return user_busy_utmp (name);
#endif /* !__linux__ */