summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2009-11-15 08:46:37 +0000
committerMarc Espie <espie@cvs.openbsd.org>2009-11-15 08:46:37 +0000
commit01a4618d9595e694fb6d4b8cff78464ae9db7889 (patch)
treea8070ce01537443b04b88f49044fee5fc2edc686 /usr.sbin
parent9792f0615a282c5575c3a3c95b3d8fd626e9f769 (diff)
missing return (nothing else to see)
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/pkg_add/OpenBSD/PackingList.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingList.pm b/usr.sbin/pkg_add/OpenBSD/PackingList.pm
index e2fc265e565..b86d250c960 100644
--- a/usr.sbin/pkg_add/OpenBSD/PackingList.pm
+++ b/usr.sbin/pkg_add/OpenBSD/PackingList.pm
@@ -1,5 +1,5 @@
# ex:ts=8 sw=4:
-# $OpenBSD: PackingList.pm,v 1.91 2009/11/03 11:03:19 espie Exp $
+# $OpenBSD: PackingList.pm,v 1.92 2009/11/15 08:46:36 espie Exp $
#
# Copyright (c) 2003-2007 Marc Espie <espie@openbsd.org>
#
@@ -238,6 +238,7 @@ sub UpdateInfoOnly
while (<$fh>) {
&$cont($_);
}
+ return;
}
next unless m/^\@(?:name\b|depend\b|wantlib\b|pkgpath\b|comment\s+subdir\=|arch\b)/o;
&$cont($_);