1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2024-11-29 09:24:22 +01:00

Revert "Wait with declaring PAM_SUCCESS on challenge-response until new"

Tollef has argued that the login should not fail if, for example, the
disk is full. I'd rather fail on the cautious side and make sure we
don't end up always sending the same challenge to the YubiKey, but I'll
leave it up to Tollef to decide for now.

This reverts commit 14e917ffae.

Conflicts:

	pam_yubico.c
This commit is contained in:
Fredrik Thulin 2011-03-17 15:08:23 +01:00 committed by Tollef Fog Heen
parent 721866df0b
commit cb16817047

View File

@ -475,8 +475,7 @@ do_challenge_response(struct cfg *cfg, const char *username)
if (strcmp(response_hex, expected_response) == 0) {
ret = PAM_SUCCESS;
} else {
D(("Unexpected C/R response : %s != %s", response_hex, expected_response));
ret = PAM_AUTH_ERR;
D(("Unexpected C/R response : %s", response_hex));
goto out;
}