diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2010-01-02 12:52:19 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2010-01-02 12:52:19 +0000 |
commit | 4893a508cc75d4392470e57f63263db944fc2c8e (patch) | |
tree | a5e790d9f8115a5dc76cdb47bdc2b4eae9c80c54 /usr.sbin/pkg_add/pkg_info | |
parent | 4f326cf2825008ca1b36472028d1020626c5fec8 (diff) |
first step in comparing full signatures: make them full objects, with
proper sign/compare interfaces.
Diffstat (limited to 'usr.sbin/pkg_add/pkg_info')
-rw-r--r-- | usr.sbin/pkg_add/pkg_info | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/pkg_info b/usr.sbin/pkg_add/pkg_info index edf3069ae97..9cabcb4a973 100644 --- a/usr.sbin/pkg_add/pkg_info +++ b/usr.sbin/pkg_add/pkg_info @@ -1,6 +1,6 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: pkg_info,v 1.82 2010/01/01 16:09:35 espie Exp $ +# $OpenBSD: pkg_info,v 1.83 2010/01/02 12:52:18 espie Exp $ # # Copyright (c) 2003-2010 Marc Espie <espie@openbsd.org> # @@ -369,7 +369,7 @@ sub print_info if ($opt_S) { just_in_time_header($pkg, $handle ,\$done); print "Signature: " unless $opt_q; - print $plist->signature, "\n"; + print $plist->signature->string, "\n"; } if ($opt_P) { require OpenBSD::PackingList; |