1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2025-02-27 06:54:15 +01:00

Wait with declaring PAM_SUCCESS on challenge-response until new

challenge-response has been stored properly on disk.
This commit is contained in:
Fredrik Thulin 2011-03-14 13:50:30 +01:00
parent feb63ee472
commit 14e917ffae

View File

@ -503,9 +503,7 @@ do_challenge_response(struct cfg *cfg, const char *username)
&response_len))
goto out;
yubikey_hex_encode(response_hex, (char *)response, response_len > 20 ? 20 : response_len);
if (strcmp(response_hex, expected_response) == 0) {
ret = PAM_SUCCESS;
} else {
if (strcmp(response_hex, expected_response) != 0) {
D(("Unexpected C/R response : %s", response_hex));
ret = PAM_AUTH_ERR;
goto out;
@ -540,6 +538,7 @@ do_challenge_response(struct cfg *cfg, const char *username)
goto out;
D(("Challenge-response success!"));
ret = PAM_SUCCESS;
out:
if (yk_errno) {