summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2007-11-29 20:40:14 +0100
committerDan McGee <dan@archlinux.org>2007-12-01 17:43:16 +0100
commit5f811dc0207ead061b89d3acc6466bb390fd242e (patch)
tree4a6c3ac98276fc6b05b45d31fa69d1056630eb01 /lib
parentcff1e2a58ffbf878e03689b52e58d8a830b45aff (diff)
downloadpacman-5f811dc0207ead061b89d3acc6466bb390fd242e.tar.gz
pacman-5f811dc0207ead061b89d3acc6466bb390fd242e.tar.xz
Ensure 0644 permissions for install and changelog files
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/libalpm/add.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c
index 7a268048..4ea3c869 100644
--- a/lib/libalpm/add.c
+++ b/lib/libalpm/add.c
@@ -296,10 +296,12 @@ static int extract_single_file(struct archive *archive,
/* the install script goes inside the db */
snprintf(filename, PATH_MAX, "%s/%s-%s/install", db->path,
newpkg->name, newpkg->version);
+ archive_entry_set_mode(entry, 0644);
} else if(strcmp(entryname, ".CHANGELOG") == 0) {
/* the changelog goes inside the db */
snprintf(filename, PATH_MAX, "%s/%s-%s/changelog", db->path,
newpkg->name, newpkg->version);
+ archive_entry_set_mode(entry, 0644);
} else if(*entryname == '.') {
/* for now, ignore all files starting with '.' that haven't
* already been handled (for future possibilities) */