Logic reversal for last_char_is
This commit is contained in:
parent
2bf4dad7ec
commit
af166e7ce0
@ -706,7 +706,7 @@ static int readTarFile(int tarFd, int extractFlag, int listFlag,
|
||||
case REGTYPE0:
|
||||
/* If the name ends in a '/' then assume it is
|
||||
* supposed to be a directory, and fall through */
|
||||
if (last_char_is(header.name,'/')) {
|
||||
if (!last_char_is(header.name,'/')) {
|
||||
if (tarExtractRegularFile(&header, extractFlag, tostdoutFlag)==FALSE)
|
||||
errorFlag=TRUE;
|
||||
break;
|
||||
|
2
tar.c
2
tar.c
@ -706,7 +706,7 @@ static int readTarFile(int tarFd, int extractFlag, int listFlag,
|
||||
case REGTYPE0:
|
||||
/* If the name ends in a '/' then assume it is
|
||||
* supposed to be a directory, and fall through */
|
||||
if (last_char_is(header.name,'/')) {
|
||||
if (!last_char_is(header.name,'/')) {
|
||||
if (tarExtractRegularFile(&header, extractFlag, tostdoutFlag)==FALSE)
|
||||
errorFlag=TRUE;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user