]> granicus.if.org Git - shadow/commitdiff
* libmisc/pwdcheck.c (passwd_check): The progname is not used.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Thu, 23 Apr 2009 20:17:02 +0000 (20:17 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Thu, 23 Apr 2009 20:17:02 +0000 (20:17 +0000)
* libmisc/pwdcheck.c: Ignore the return value of sleep().
* libmisc/pwdcheck.c: Use exit(EXIT_FAILURE) instead of exit(1).

ChangeLog
libmisc/pwdcheck.c

index 461fd80a2c71f6a9455cf15ec0c7027c811b1cc4..764cc2cbdcad6c4775f86c3f75d4afd9ec13e778 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-04-22  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * libmisc/pwdcheck.c (passwd_check): The progname is not used.
+       * libmisc/pwdcheck.c: Ignore the return value of sleep().
+       * libmisc/pwdcheck.c: Use exit(EXIT_FAILURE) instead of exit(1).
+
 2009-04-22  Nicolas François  <nicolas.francois@centraliens.net>
 
        * libmisc/setupenv.c: Avoid assignments in comparisons.
@@ -5,7 +11,7 @@
        * libmisc/setupenv.c: Ignore the return value of fclose (file
        opened read-only)
        * libmisc/setupenv.c: Ignore the return value of puts().
-       * libmisc/setupenv.c:Avoid implicit conversion of pointers to
+       * libmisc/setupenv.c: Avoid implicit conversion of pointers to
        booleans.
 
 2009-04-22  Nicolas François  <nicolas.francois@centraliens.net>
index 71c08f365abc30483feefe5e817da4a6ce9b583f..ec1f47449acfac7930e43b43069d38ea29c40b73 100644 (file)
@@ -40,7 +40,7 @@
 #include "defines.h"
 #include "pwauth.h"
 
-void passwd_check (const char *user, const char *passwd, const char *progname)
+void passwd_check (const char *user, const char *passwd, unused const char *progname)
 {
        struct spwd *sp;
 
@@ -50,9 +50,9 @@ void passwd_check (const char *user, const char *passwd, const char *progname)
        }
        if (pw_auth (passwd, user, PW_LOGIN, (char *) 0) != 0) {
                SYSLOG ((LOG_WARN, "incorrect password for `%s'", user));
-               sleep (1);
+               (void) sleep (1);
                fprintf (stderr, _("Incorrect password for %s.\n"), user);
-               exit (1);
+               exit (EXIT_FAILURE);
        }
 }
 #else                  /* USE_PAM */