aboutsummaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tar.c b/tar.c
index 87b5d2176..8f802de64 100644
--- a/tar.c
+++ b/tar.c
@@ -596,6 +596,12 @@ readHeader(const TarHeader * hp, int fileCount, char **fileTable)
596 */ 596 */
597 if (S_ISDIR(mode)) { 597 if (S_ISDIR(mode)) {
598 if (createPath(outName, mode) == TRUE) { 598 if (createPath(outName, mode) == TRUE) {
599 /* make the final component, just in case it was
600 * omitted by createPath() (which will skip the
601 * directory if it doesn't have a terminating '/')
602 */
603 mkdir(outName, mode);
604
599 /* Set the file time */ 605 /* Set the file time */
600 utb.actime = mtime; 606 utb.actime = mtime;
601 utb.modtime = mtime; 607 utb.modtime = mtime;