From: espie Date: Sat, 19 Jul 2014 08:48:44 +0000 (+0000) Subject: actually use the cve match_location correctly. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d3b0cf47ceca15444b848ce93746cba08bf90df0;p=openbsd actually use the cve match_location correctly. problem noticed by aja@ --- diff --git a/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm b/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm index 27cb639d4c2..1cdd474d6b0 100644 --- a/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm +++ b/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm @@ -1,7 +1,7 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: PkgAdd.pm,v 1.72 2014/07/12 22:08:23 espie Exp $ +# $OpenBSD: PkgAdd.pm,v 1.73 2014/07/19 08:48:44 espie Exp $ # # Copyright (c) 2003-2014 Marc Espie # @@ -280,7 +280,8 @@ sub check_security if (defined $bad) { require OpenBSD::PkgSpec; my $spec = OpenBSD::PkgSpec->new($bad); - if ($spec->match_locations([$h->{location}])) { + my $r = $spec->match_locations([$h->{location}]); + if (@$r != 0) { $error++; } }