diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2000-09-09 12:48:40 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2000-09-09 12:48:40 +0000 |
commit | 6fb88e73f792ad6dfb1c2c08600972988f223012 (patch) | |
tree | bdb5af2e15f1d6b44d84cdd2f55372f6f9fe4500 | |
parent | 8324b9f1aacde5c1c80f0a94ba3d276787e14183 (diff) | |
download | busybox-w32-6fb88e73f792ad6dfb1c2c08600972988f223012.tar.gz busybox-w32-6fb88e73f792ad6dfb1c2c08600972988f223012.tar.bz2 busybox-w32-6fb88e73f792ad6dfb1c2c08600972988f223012.zip |
Fix permisions
-rw-r--r-- | ar.c | 3 | ||||
-rw-r--r-- | archival/ar.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -298,7 +298,8 @@ extern int ar_main(int argc, char **argv) | |||
298 | 298 | ||
299 | while(extractList->next != NULL) { | 299 | while(extractList->next != NULL) { |
300 | if ( (funct & EXT_TO_FILE) == EXT_TO_FILE) { | 300 | if ( (funct & EXT_TO_FILE) == EXT_TO_FILE) { |
301 | dstFd = open(extractList->name, O_WRONLY | O_CREAT); | 301 | dstFd = open(extractList->name, O_WRONLY | O_CREAT, extractList->mode); |
302 | |||
302 | extractAr(srcFd, dstFd, extractList); | 303 | extractAr(srcFd, dstFd, extractList); |
303 | } | 304 | } |
304 | if ( (funct & EXT_TO_STDOUT) == EXT_TO_STDOUT) | 305 | if ( (funct & EXT_TO_STDOUT) == EXT_TO_STDOUT) |
diff --git a/archival/ar.c b/archival/ar.c index b758a6975..eaa15a516 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -298,7 +298,8 @@ extern int ar_main(int argc, char **argv) | |||
298 | 298 | ||
299 | while(extractList->next != NULL) { | 299 | while(extractList->next != NULL) { |
300 | if ( (funct & EXT_TO_FILE) == EXT_TO_FILE) { | 300 | if ( (funct & EXT_TO_FILE) == EXT_TO_FILE) { |
301 | dstFd = open(extractList->name, O_WRONLY | O_CREAT); | 301 | dstFd = open(extractList->name, O_WRONLY | O_CREAT, extractList->mode); |
302 | |||
302 | extractAr(srcFd, dstFd, extractList); | 303 | extractAr(srcFd, dstFd, extractList); |
303 | } | 304 | } |
304 | if ( (funct & EXT_TO_STDOUT) == EXT_TO_STDOUT) | 305 | if ( (funct & EXT_TO_STDOUT) == EXT_TO_STDOUT) |