diff options
Diffstat (limited to 'usr.sbin/pkg_add/OpenBSD/x509.pm')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/x509.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/x509.pm b/usr.sbin/pkg_add/OpenBSD/x509.pm index c300ebefe60..a66c62efabb 100644 --- a/usr.sbin/pkg_add/OpenBSD/x509.pm +++ b/usr.sbin/pkg_add/OpenBSD/x509.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: x509.pm,v 1.5 2010/05/10 09:17:55 espie Exp $ +# $OpenBSD: x509.pm,v 1.6 2010/06/15 08:26:39 espie Exp $ # # Copyright (c) 2003-2007 Marc Espie <espie@openbsd.org> # @@ -96,7 +96,7 @@ sub check_signature my ($plist, $state) = @_; my $sig = $plist->get('digital-signature'); if ($sig->{key} ne 'x509') { - $state->log->warn("Error: unknown signature style"); + $state->log("Error: unknown signature style"); return 0; } my ($fh, $fname) = mkstemp("/tmp/pkgcontent.XXXXXXXXX"); @@ -108,7 +108,7 @@ sub check_signature if (system_quiet (OpenBSD::Paths->openssl, "smime", "-verify", "-binary", "-inform", "DEM", "-in", $fname2, "-content", $fname, "-CAfile", OpenBSD::Paths->pkgca, "-out", "/dev/null") != 0) { - $state->log->warn("Bad signature"); + $state->log("Bad signature"); return 0; } if ($state->verbose >= 2) { |