aboutsummaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-07-03 20:55:30 +0000
committerMatt Kraai <kraai@debian.org>2001-07-03 20:55:30 +0000
commit623cfa99e5b247c0a08b83acfb46a2399a5be957 (patch)
tree598dddb36736cedc57c613d4da4667a81d485089 /tar.c
parentdd8500bce782d167a85c31b3e39f550872f44ab1 (diff)
downloadbusybox-623cfa99e5b247c0a08b83acfb46a2399a5be957.tar.gz
Remove a redundant call to mkdir.
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/tar.c b/tar.c
index c18e66fd2..4702a5f8a 100644
--- a/tar.c
+++ b/tar.c
@@ -399,16 +399,8 @@ tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
if (extractFlag==FALSE || tostdoutFlag==TRUE)
return( TRUE);
- if (make_directory(header->name, header->mode, FILEUTILS_RECUR) < 0) {
+ if (make_directory(header->name, header->mode, FILEUTILS_RECUR) < 0)
return( FALSE);
- }
- /* make the final component, just in case it was
- * omitted by make_directory() (which will skip the
- * directory if it doesn't have a terminating '/') */
- if (mkdir(header->name, header->mode) < 0 && errno != EEXIST) {
- perror_msg("%s", header->name);
- return FALSE;
- }
fixUpPermissions(header);
return( TRUE);