diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-02-22 19:23:54 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-02-22 19:23:54 +0000 |
commit | 7a98035ec2005bfbfc59867ceb9bcaa26c652a43 (patch) | |
tree | 13978e9357f19206e324d35a4bf06063868535a1 | |
parent | bc8e329b16f5d0fcdbcdf91b608b899a0d49c56a (diff) | |
download | perl-URPM-7a98035ec2005bfbfc59867ceb9bcaa26c652a43.tar perl-URPM-7a98035ec2005bfbfc59867ceb9bcaa26c652a43.tar.gz perl-URPM-7a98035ec2005bfbfc59867ceb9bcaa26c652a43.tar.bz2 perl-URPM-7a98035ec2005bfbfc59867ceb9bcaa26c652a43.tar.xz perl-URPM-7a98035ec2005bfbfc59867ceb9bcaa26c652a43.zip |
(drop_tags) readd two lines dropped by error in a commented out
function in commit r904 on 2011-04-16 (was: "clean rpm5 support out")
-rw-r--r-- | URPM.xs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1134,6 +1134,8 @@ static void drop_tags(Header *h) { headerDel(*h, RPMTAG_FILESIZES); /* ? */ headerDel(*h, RPMTAG_FILERDEVS); /* it seems unused. always empty */ headerDel(*h, RPMTAG_FILEVERIFYFLAGS); /* only used for -V */ + headerDel(*h, RPMTAG_FILEDIGESTALGOS); /* only used for -V */ + headerDel(*h, RPMTAG_FILEDIGESTS); /* only used for -V */ /* alias: RPMTAG_FILEMD5S */ /* keep RPMTAG_FILEFLAGS for %config (rpmnew) to work */ /* keep RPMTAG_FILELANGS for %lang (_install_langs) to work */ /* keep RPMTAG_FILELINKTOS for checking conflicts between symlinks */ |