Fix to make 'ar xv' work, thanks to Kent Robotti <robotti@metconnect.com>

-Erik
This commit is contained in:
Eric Andersen 2000-08-11 20:11:35 +00:00
parent bb39a31e33
commit 6ac18a3d83
2 changed files with 2 additions and 2 deletions

2
ar.c
View File

@ -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

View File

@ -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