diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-11-13 23:13:40 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-11-13 23:13:40 +0000 |
commit | 92bad532bdbce286c3b7f24ba9b429dca9f78f70 (patch) | |
tree | 6647fe90a3fd59bab7c5b253383dc823552afff9 /usr.sbin | |
parent | c506d762f545baae0077c59f704cb3e5754b5d10 (diff) |
fix loop label. reported by naddy@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/CollisionReport.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/CollisionReport.pm b/usr.sbin/pkg_add/OpenBSD/CollisionReport.pm index 96c0b2fa923..d1e8b4470a3 100644 --- a/usr.sbin/pkg_add/OpenBSD/CollisionReport.pm +++ b/usr.sbin/pkg_add/OpenBSD/CollisionReport.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: CollisionReport.pm,v 1.1 2004/11/11 12:29:58 espie Exp $ +# $OpenBSD: CollisionReport.pm,v 1.2 2004/11/13 23:13:39 espie Exp $ # # Copyright (c) 2003-2004 Marc Espie <espie@openbsd.org> # @@ -41,7 +41,7 @@ sub collision_report($$) $bypkg->{$pkg} = [] unless defined $bypkg->{$pkg}; push(@{$bypkg->{$pkg}}, $name); delete $todo{$name}; - last LOOP if !%todo; + last BIGLOOP if !%todo; } } } |