From c859ad91c4dd0e53e3b1581de2a722fd5f7ca262 Mon Sep 17 00:00:00 2001 From: nekral-guest Date: Mon, 18 May 2009 22:46:13 +0000 Subject: [PATCH] Added missing return value. --- libmisc/user_busy.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libmisc/user_busy.c b/libmisc/user_busy.c index 2e22615e..ff626b04 100644 --- a/libmisc/user_busy.c +++ b/libmisc/user_busy.c @@ -91,8 +91,10 @@ static int user_busy_utmp (const char *name) continue; } - return USER_BUSY; + return 1; } + + return 0; } #endif /* !__linux__ */