Remove extra debug that crept in

This commit is contained in:
Baptiste Daroussin 2015-09-08 22:24:20 +00:00
parent 61acb4582f
commit 4c79e0d6c1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287580

View File

@ -555,16 +555,16 @@ rsa_verify_cert(int fd, const char *sigfile, const unsigned char *key,
}
if (EVP_DigestVerifyInit(mdctx, NULL, EVP_sha256(), NULL, pkey) != 1) {
warnx("la %s", ERR_error_string(ERR_get_error(), errbuf));
warnx("%s", ERR_error_string(ERR_get_error(), errbuf));
goto error;
}
if (EVP_DigestVerifyUpdate(mdctx, sha256, strlen(sha256)) != 1) {
warnx("ici: %s", ERR_error_string(ERR_get_error(), errbuf));
warnx("%s", ERR_error_string(ERR_get_error(), errbuf));
goto error;
}
if (EVP_DigestVerifyFinal(mdctx, sig, siglen) != 1) {
warnx("merde %s", ERR_error_string(ERR_get_error(), errbuf));
warnx("%s", ERR_error_string(ERR_get_error(), errbuf));
goto error;
}