svn commit: r287580 - head/usr.sbin/pkg
Baptiste Daroussin
bapt at FreeBSD.org
Tue Sep 8 22:24:22 UTC 2015
Author: bapt
Date: Tue Sep 8 22:24:20 2015
New Revision: 287580
URL: https://svnweb.freebsd.org/changeset/base/287580
Log:
Remove extra debug that crept in
Modified:
head/usr.sbin/pkg/pkg.c
Modified: head/usr.sbin/pkg/pkg.c
==============================================================================
--- head/usr.sbin/pkg/pkg.c Tue Sep 8 21:25:36 2015 (r287579)
+++ head/usr.sbin/pkg/pkg.c Tue Sep 8 22:24:20 2015 (r287580)
@@ -555,16 +555,16 @@ rsa_verify_cert(int fd, const char *sigf
}
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;
}
More information about the svn-src-all
mailing list