diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-10 15:27:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-10 15:27:46 +0000 |
commit | 797a8dfb452ed8b48da3d9f174cae761b2c1d87d (patch) | |
tree | bcf344e304a337b1f33aca1aa45de7a815d2f216 | |
parent | bcf745cef02639c4c8d4d544ce386b98fc3c9597 (diff) | |
download | urpmi-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-- | NEWS | 4 | ||||
-rwxr-xr-x | urpmf | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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: @@ -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);", |