summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2015-09-15 05:56:16 +0000
committerbapt <bapt@FreeBSD.org>2015-09-15 05:56:16 +0000
commit7a94803fa42dbb8f29df22eb1a1eaba5feaf7272 (patch)
tree1f2ec0d05ef4da07f323dda94590375e03de17fe
parent07bd68bf9d301675658c8c99a44ac63d403d0608 (diff)
downloadFreeBSD-src-7a94803fa42dbb8f29df22eb1a1eaba5feaf7272.zip
FreeBSD-src-7a94803fa42dbb8f29df22eb1a1eaba5feaf7272.tar.gz
MFC: r287580
Remove extra debug that crept in
-rw-r--r--usr.sbin/pkg/pkg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg/pkg.c b/usr.sbin/pkg/pkg.c
index bf907fd..fc2192d 100644
--- a/usr.sbin/pkg/pkg.c
+++ b/usr.sbin/pkg/pkg.c
@@ -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;
}
OpenPOWER on IntegriCloud