+2008-09-20 Nicolas François <nicolas.francois@centraliens.net>
+
+ * src/logoutd.c, src/userdel.c: Re-indent. This helps pmccabe.
+
2008-09-20 Nicolas François <nicolas.francois@centraliens.net>
* src/login.c: Add missing closing }. This was probably never
* is permitted to be signed on at this time.
*/
#if HAVE_UTMPX_H
- while ((ut = getutxent ()) != NULL) {
+ while ((ut = getutxent ()) != NULL)
#else
- while ((ut = getutent ()) != NULL) {
+ while ((ut = getutent ()) != NULL)
#endif
+ {
if (ut->ut_type != USER_PROCESS) {
continue;
}
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;