diff options
-rw-r--r-- | modules/pam_faillock/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_faillock/main.c b/modules/pam_faillock/main.c index c5780166..d5495378 100644 --- a/modules/pam_faillock/main.c +++ b/modules/pam_faillock/main.c @@ -157,7 +157,7 @@ do_user(struct options *opts, const char *user) unsigned int i; memset(&tallies, 0, sizeof(tallies)); - if ((rv=read_tally(fd, &tallies)) == -1) { + if (read_tally(fd, &tallies) == -1) { fprintf(stderr, "%s: Error reading the tally file for %s:", opts->progname, user); perror(NULL); |