Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Sep 2015 22:24:21 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287580 - head/usr.sbin/pkg
Message-ID:  <201509082224.t88MOLGE028183@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
 	}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509082224.t88MOLGE028183>