summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pkg
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2015-09-08 22:24:20 +0000
committerbapt <bapt@FreeBSD.org>2015-09-08 22:24:20 +0000
commit390f3fc8ff50e82f1c94eb582053c8641b5c255c (patch)
tree2be775d9e5e585560b413ae3c824b245af897aa3 /usr.sbin/pkg
parent57a6813e1e1c4dbe9eb54329ffaf8fef38b016f3 (diff)
downloadFreeBSD-src-390f3fc8ff50e82f1c94eb582053c8641b5c255c.zip
FreeBSD-src-390f3fc8ff50e82f1c94eb582053c8641b5c255c.tar.gz
Remove extra debug that crept in
Diffstat (limited to 'usr.sbin/pkg')
-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 9a26c0b..bd3076c 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