Fix minor compilation warning (assignment used as a comparison).
This commit is contained in:
@@ -167,7 +167,7 @@ static void reset (void)
|
||||
struct passwd *pwent;
|
||||
|
||||
setpwent ();
|
||||
while ( pwent = getpwent () ) {
|
||||
while ( (pwent = getpwent ()) != NULL ) {
|
||||
reset_one (pwent->pw_uid);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user