mirror of https://github.com/mirror/busybox.git
Logic reversal for last_char_is
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