From b8ea76ba72ba2e1579fe39322f337ef7d58288b3 Mon Sep 17 00:00:00 2001 From: Samanta Navarro Date: Thu, 16 Feb 2023 11:53:52 +0000 Subject: [PATCH] Fix typo It should be "if" not "is". Signed-off-by: Samanta Navarro --- libmisc/user_busy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__ */ -- 2.47.3