]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
Fix typo
authorSamanta Navarro <ferivoz@riseup.net>
Thu, 16 Feb 2023 11:53:52 +0000 (11:53 +0000)
committerSerge Hallyn <serge@hallyn.com>
Thu, 16 Feb 2023 19:23:08 +0000 (13:23 -0600)
It should be "if" not "is".

Signed-off-by: Samanta Navarro <ferivoz@riseup.net>
libmisc/user_busy.c

index 53d9c589c9a7c8a43a1c269d4f64071d7b35ba28..eef645636bee8cf93d63c8bb72caf5a6a7579cd1 100644 (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__ */