Fix few zelaous WARNING->ERR

This commit is contained in:
Philippe Teuwen
2019-07-14 12:17:34 +02:00
parent 8bf4b4ad97
commit 55602bf833
13 changed files with 31 additions and 31 deletions

View File

@@ -386,7 +386,7 @@ static int FIDO2CheckSignature(json_t *root, uint8_t *publickey, uint8_t *sign,
if (res == -0x4e00) {
PrintAndLogEx(WARNING, "Signature is NOT VALID.");
} else {
PrintAndLogEx(ERR, "Other signature check error: %x %s", (res < 0) ? -res : res, ecdsa_get_error(res));
PrintAndLogEx(WARNING, "Other signature check error: %x %s", (res < 0) ? -res : res, ecdsa_get_error(res));
}
return res;
} else {