summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-01-10 15:27:46 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-01-10 15:27:46 +0000
commit797a8dfb452ed8b48da3d9f174cae761b2c1d87d (patch)
treebcf344e304a337b1f33aca1aa45de7a815d2f216
parentbcf745cef02639c4c8d4d544ce386b98fc3c9597 (diff)
downloadurpmi-797a8dfb452ed8b48da3d9f174cae761b2c1d87d.tar
urpmi-797a8dfb452ed8b48da3d9f174cae761b2c1d87d.tar.gz
urpmi-797a8dfb452ed8b48da3d9f174cae761b2c1d87d.tar.bz2
urpmi-797a8dfb452ed8b48da3d9f174cae761b2c1d87d.tar.xz
urpmi-797a8dfb452ed8b48da3d9f174cae761b2c1d87d.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 515c23d6..e688c221 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.20 - 21 December 2007, by Pascal "Pixel" Rigaux
- urpmi:
diff --git a/urpmf b/urpmf
index d8d375fb..1d527641 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);",