summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-01-10 15:28:15 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-01-10 15:28:15 +0000
commit4587bccc839b48993aee969c4427beae1c813af7 (patch)
tree6d228226f6f72a1ab21f6796315c498a3011407b
parentc1a00252bc908508d9664b153a9650f1ad3cfcc8 (diff)
downloadurpmi-4587bccc839b48993aee969c4427beae1c813af7.tar
urpmi-4587bccc839b48993aee969c4427beae1c813af7.tar.gz
urpmi-4587bccc839b48993aee969c4427beae1c813af7.tar.bz2
urpmi-4587bccc839b48993aee969c4427beae1c813af7.tar.xz
urpmi-4587bccc839b48993aee969c4427beae1c813af7.zip
- 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)
-rw-r--r--NEWS4
-rwxr-xr-xurpmf2
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index dc73bb71..a53eca5a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+- 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)
+
Version 4.10.14.2 - 21 December 2007, by Pascal "Pixel" Rigaux
- urpmi:
diff --git a/urpmf b/urpmf
index 6445b9b3..b3961a6d 100755
--- a/urpmf
+++ b/urpmf
@@ -153,7 +153,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);",