Fix minor compilation warning (assignment used as a comparison).
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-03-17 Nicolas François <nicolas.francois@centraliens.net>
|
||||
|
||||
* src/faillog.c: Fix minor compilation warning (assignment used as
|
||||
a comparison).
|
||||
|
||||
2008-03-17 Nicolas François <nicolas.francois@centraliens.net>
|
||||
|
||||
* lib/prototypes.h, src/login.c: login_access() is used 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