static int
tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
{
- int result;
-
if (extractFlag==FALSE || tostdoutFlag==TRUE)
return( TRUE);
/* make the final component, just in case it was
* omitted by create_path() (which will skip the
* directory if it doesn't have a terminating '/') */
- result = mkdir(header->name, header->mode);
- /* Don't fix permissions on pre-existing directories */
- if (result == 0) {
- fixUpPermissions(header);
- } else if (result < 0 && errno != EEXIST) {
+ if (mkdir(header->name, header->mode) < 0 && errno != EEXIST) {
perror_msg("%s", header->name);
return FALSE;
}
+ fixUpPermissions(header);
return( TRUE);
}
static int
tarExtractDirectory(TarInfo *header, int extractFlag, int tostdoutFlag)
{
- int result;
-
if (extractFlag==FALSE || tostdoutFlag==TRUE)
return( TRUE);
/* make the final component, just in case it was
* omitted by create_path() (which will skip the
* directory if it doesn't have a terminating '/') */
- result = mkdir(header->name, header->mode);
- /* Don't fix permissions on pre-existing directories */
- if (result == 0) {
- fixUpPermissions(header);
- } else if (result < 0 && errno != EEXIST) {
+ if (mkdir(header->name, header->mode) < 0 && errno != EEXIST) {
perror_msg("%s", header->name);
return FALSE;
}
+ fixUpPermissions(header);
return( TRUE);
}