summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2014-02-01 10:53:18 +0000
committerMarc Espie <espie@cvs.openbsd.org>2014-02-01 10:53:18 +0000
commit9cd7da62df782ae1b95c4289210eb6eb6e4c2f1f (patch)
treeb5a2b7193ea0b0ed5ed4fc884783c734b20d2a13
parent49d436fcb10124df20781faf4f969e066b761f14 (diff)
style
-rw-r--r--usr.sbin/pkg_add/OpenBSD/PkgCfl.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PkgCfl.pm b/usr.sbin/pkg_add/OpenBSD/PkgCfl.pm
index df115e52220..bdc5c77e214 100644
--- a/usr.sbin/pkg_add/OpenBSD/PkgCfl.pm
+++ b/usr.sbin/pkg_add/OpenBSD/PkgCfl.pm
@@ -1,5 +1,5 @@
# ex:ts=8 sw=4:
-# $OpenBSD: PkgCfl.pm,v 1.38 2014/01/31 10:30:48 espie Exp $
+# $OpenBSD: PkgCfl.pm,v 1.39 2014/02/01 10:53:17 espie Exp $
#
# Copyright (c) 2003-2005 Marc Espie <espie@openbsd.org>
#
@@ -72,13 +72,13 @@ sub register($$)
{
my ($plist, $state) = @_;
- $state->{conflict_list}->{$plist->pkgname} = $plist->conflict_list;
+ $state->{conflict_list}{$plist->pkgname} = $plist->conflict_list;
}
sub unregister($$)
{
my ($plist, $state) = @_;
- delete $state->{conflict_list}->{$plist->pkgname};
+ delete $state->{conflict_list}{$plist->pkgname};
}
sub fill_conflict_lists($)