From: Samanta Navarro Date: Thu, 16 Feb 2023 11:53:52 +0000 (+0000) Subject: Fix typo X-Git-Tag: 4.14.0-rc1~176 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8ea76ba72ba2e1579fe39322f337ef7d58288b3;p=thirdparty%2Fshadow.git Fix typo It should be "if" not "is". Signed-off-by: Samanta Navarro --- diff --git a/libmisc/user_busy.c b/libmisc/user_busy.c index 53d9c589c..eef645636 100644 --- a/libmisc/user_busy.c +++ b/libmisc/user_busy.c @@ -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__ */