From e272915e1ffd6978ef3555ce4ae1798a9fbcee56 Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Fri, 18 Feb 2000 21:34:17 +0000 Subject: Some updates for the day, -Erik --- tar.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tar.c') diff --git a/tar.c b/tar.c index 87b5d21..8f802de 100644 --- a/tar.c +++ b/tar.c @@ -596,6 +596,12 @@ readHeader(const TarHeader * hp, int fileCount, char **fileTable) */ if (S_ISDIR(mode)) { if (createPath(outName, mode) == TRUE) { + /* make the final component, just in case it was + * omitted by createPath() (which will skip the + * directory if it doesn't have a terminating '/') + */ + mkdir(outName, mode); + /* Set the file time */ utb.actime = mtime; utb.modtime = mtime; -- cgit v1.1