* src/logoutd.c, src/userdel.c: Re-indent. This helps pmccabe.

This commit is contained in:
nekral-guest
2008-09-20 14:56:10 +00:00
parent 54a0762bbb
commit 6b17118e72
3 changed files with 10 additions and 4 deletions

View File

@@ -592,13 +592,14 @@ static void user_busy (const char *name, uid_t uid)
struct utmpx *utent;
setutxent ();
while ((utent = getutxent ()) != NULL) {
while ((utent = getutxent ()) != NULL)
#else
struct utmp *utent;
setutent ();
while ((utent = getutent ()) != NULL) {
while ((utent = getutent ()) != NULL)
#endif
{
if (utent->ut_type != USER_PROCESS)
continue;