Added missing return value.

This commit is contained in:
nekral-guest 2009-05-18 22:46:13 +00:00
parent 5dead2b296
commit c859ad91c4

View File

@ -91,8 +91,10 @@ static int user_busy_utmp (const char *name)
continue; continue;
} }
return USER_BUSY; return 1;
} }
return 0;
} }
#endif /* !__linux__ */ #endif /* !__linux__ */