]> granicus.if.org Git - sudo/commitdiff
correct a comment
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 24 Jan 2000 03:23:40 +0000 (03:23 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 24 Jan 2000 03:23:40 +0000 (03:23 +0000)
auth/pam.c

index b46323ce031f65637a149e6edaef90da65beae7d..ad4e52ec1037ac5f94fbe7f1d96241751125cf07 100644 (file)
@@ -100,10 +100,7 @@ pam_verify(pw, prompt, auth)
     if ((error = pam_authenticate(pamh, PAM_SILENT)) == PAM_SUCCESS)
        return(AUTH_SUCCESS);
 
-    /*
-     * Any error other than PAM_AUTH_ERR or PAM_MAXTRIES may indicate
-     * a config problem.
-     */
+    /* Any error other than PAM_AUTH_ERR or PAM_MAXTRIES is probably fatal.  */
     if (error != PAM_AUTH_ERR && error != PAM_MAXTRIES) {
        if ((s = pam_strerror(pamh, error)))
            log_error(NO_EXIT|NO_MAIL, "pam_authenticate: %s\n", s);