From 6fb88e73f792ad6dfb1c2c08600972988f223012 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sat, 9 Sep 2000 12:48:40 +0000 Subject: [PATCH] Fix permisions --- ar.c | 3 ++- archival/ar.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ar.c b/ar.c index b758a6975..eaa15a516 100644 --- a/ar.c +++ b/ar.c @@ -298,7 +298,8 @@ extern int ar_main(int argc, char **argv) while(extractList->next != NULL) { if ( (funct & EXT_TO_FILE) == EXT_TO_FILE) { - dstFd = open(extractList->name, O_WRONLY | O_CREAT); + dstFd = open(extractList->name, O_WRONLY | O_CREAT, extractList->mode); + extractAr(srcFd, dstFd, extractList); } 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) while(extractList->next != NULL) { if ( (funct & EXT_TO_FILE) == EXT_TO_FILE) { - dstFd = open(extractList->name, O_WRONLY | O_CREAT); + dstFd = open(extractList->name, O_WRONLY | O_CREAT, extractList->mode); + extractAr(srcFd, dstFd, extractList); } if ( (funct & EXT_TO_STDOUT) == EXT_TO_STDOUT)