aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
Diffstat (limited to 'archival')
-rw-r--r--archival/rpm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/rpm.c b/archival/rpm.c
index 9d16567bc..32d506de0 100644
--- a/archival/rpm.c
+++ b/archival/rpm.c
@@ -143,7 +143,7 @@ int rpm_main(int argc, char **argv)
143 mytags = rpm_gettags(rpm_fd, (int *) &tagcount); 143 mytags = rpm_gettags(rpm_fd, (int *) &tagcount);
144 offset = lseek(rpm_fd, 0, SEEK_CUR); 144 offset = lseek(rpm_fd, 0, SEEK_CUR);
145 if (!mytags) { printf("Error reading rpm header\n"); exit(-1); } 145 if (!mytags) { printf("Error reading rpm header\n"); exit(-1); }
146 map = mmap(0, offset > getpagesize() ? (offset + offset % getpagesize()) : getpagesize(), PROT_READ, MAP_SHARED, rpm_fd, 0); // Mimimum is one page 146 map = mmap(0, offset > getpagesize() ? (offset + offset % getpagesize()) : getpagesize(), PROT_READ, MAP_PRIVATE, rpm_fd, 0); // Mimimum is one page
147 if (func & rpm_install) { 147 if (func & rpm_install) {
148 loop_through_files(RPMTAG_BASENAMES, fileaction_dobackup); /* Backup any config files */ 148 loop_through_files(RPMTAG_BASENAMES, fileaction_dobackup); /* Backup any config files */
149 extract_cpio_gz(rpm_fd); // Extact the archive 149 extract_cpio_gz(rpm_fd); // Extact the archive