diff options
author | Erik Andersen <andersen@codepoet.org> | 1999-12-28 00:17:46 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 1999-12-28 00:17:46 +0000 |
commit | 00266d3df6ba8dcc6247f112372a0ce5a8ab2c32 (patch) | |
tree | ca61fc301d4f1ee06b0a03bd352b672360b88eda /archival/tar.c | |
parent | 69ba6b2956202728a3da3489caa383fa6e7b114f (diff) |
Fixed a bug where tar would not set the user and group on device
special files.
-Erik
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/archival/tar.c b/archival/tar.c index bff248212..7167d95cd 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -577,17 +577,15 @@ readHeader (const TarHeader * hp, int fileCount, char **fileTable) } else { outFd = open (name, O_WRONLY | O_CREAT | O_TRUNC, mode); } + if (outFd < 0) { + perror (name); + skipFileFlag = TRUE; + return; + } + chown(name, uid, gid); + chmod(name, mode); } - if (outFd < 0) { - perror (name); - skipFileFlag = TRUE; - return; - } - if (tostdoutFlag == FALSE) { - fchown(outFd, uid, gid); - fchmod(outFd, mode); - } /* * If the file is empty, then that's all we need to do. |