commit | 6fb88e73f792ad6dfb1c2c08600972988f223012 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Sat Sep 09 12:48:40 2000 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Sat Sep 09 12:48:40 2000 +0000 |
tree | bdb5af2e15f1d6b44d84cdd2f55372f6f9fe4500 | |
parent | 8324b9f1aacde5c1c80f0a94ba3d276787e14183 [diff] [blame] |
Fix permisions
diff --git a/archival/ar.c b/archival/ar.c index b758a69..eaa15a5 100644 --- a/archival/ar.c +++ b/archival/ar.c
@@ -298,7 +298,8 @@ 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)