mirror of https://github.com/mirror/busybox.git
Fix to make 'ar xv' work, thanks to Kent Robotti <robotti@metconnect.com>
-Erik1_00_stable_10817
parent
bb39a31e33
commit
6ac18a3d83
2
ar.c
2
ar.c
|
@ -249,7 +249,7 @@ static int readArFile(char *fileList[16], int fileListSize, int funct)
|
|||
else {
|
||||
extFileFlag=0;
|
||||
|
||||
if (funct&AR_DISPLAY)
|
||||
if ((funct&AR_DISPLAY) || (funct&AR_VERBOSE))
|
||||
displayEntry(&arEntry, funct);
|
||||
|
||||
/* check file was specified to be extracted only if
|
||||
|
|
|
@ -249,7 +249,7 @@ static int readArFile(char *fileList[16], int fileListSize, int funct)
|
|||
else {
|
||||
extFileFlag=0;
|
||||
|
||||
if (funct&AR_DISPLAY)
|
||||
if ((funct&AR_DISPLAY) || (funct&AR_VERBOSE))
|
||||
displayEntry(&arEntry, funct);
|
||||
|
||||
/* check file was specified to be extracted only if
|
||||
|
|
Loading…
Reference in New Issue