diff options
Diffstat (limited to 'tar.c')
-rw-r--r-- | tar.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -648,7 +648,8 @@ static int readTarFile(const char* tarName, int extractFlag, int listFlag, | |||
648 | } | 648 | } |
649 | 649 | ||
650 | /* Remove any clutter lying in our way */ | 650 | /* Remove any clutter lying in our way */ |
651 | unlink( header.name); | 651 | if (extractFlag == TRUE) /* .. but only if we are extracting (as */ |
652 | unlink( header.name); /* opposed to listing) (rob@sysgo.de) */ | ||
652 | 653 | ||
653 | /* If we got here, we can be certain we have a legitimate | 654 | /* If we got here, we can be certain we have a legitimate |
654 | * header to work with. So work with it. */ | 655 | * header to work with. So work with it. */ |