From: nekral-guest Date: Mon, 18 May 2009 22:46:13 +0000 (+0000) Subject: Added missing return value. X-Git-Tag: 4.1.4.1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c859ad91c4dd0e53e3b1581de2a722fd5f7ca262;p=shadow Added missing return value. --- 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__ */