summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xurpmf2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 72ace196..75f5ca8e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- urpmf
+ o fix an *old* bug (since december 2002) making urpmf keeps parsed
+ hdlist files in memory (was fixed for multitags, but not for simple tags)
- all tools:
o drop hdlist support (will be replaced with xml media_info)
o replace /var/lib/urpmi/MD5SUM with /var/lib/urpmi/MD5SUM.<medium_name>
diff --git a/urpmf b/urpmf
index 23e457a1..71b914ae 100755
--- a/urpmf
+++ b/urpmf
@@ -152,7 +152,7 @@ if ($multitag) {
($proto, $sprintfargs) = ('$proto_cooked', '$mt');
}
-my $next_st = $multitag ? 'next' : 'return 1';
+my $next_st = $multitag ? 'next' : 'return 0';
my @inner = (
'local $_;',
"\$_ = sprintf(qq{$proto}, $sprintfargs);",