diff options
-rw-r--r-- | ar.c | 2 | ||||
-rw-r--r-- | archival/ar.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -249,7 +249,7 @@ static int readArFile(char *fileList[16], int fileListSize, int funct) | |||
249 | else { | 249 | else { |
250 | extFileFlag=0; | 250 | extFileFlag=0; |
251 | 251 | ||
252 | if (funct&AR_DISPLAY) | 252 | if ((funct&AR_DISPLAY) || (funct&AR_VERBOSE)) |
253 | displayEntry(&arEntry, funct); | 253 | displayEntry(&arEntry, funct); |
254 | 254 | ||
255 | /* check file was specified to be extracted only if | 255 | /* check file was specified to be extracted only if |
diff --git a/archival/ar.c b/archival/ar.c index d8c8d465b..b1200b8ae 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -249,7 +249,7 @@ static int readArFile(char *fileList[16], int fileListSize, int funct) | |||
249 | else { | 249 | else { |
250 | extFileFlag=0; | 250 | extFileFlag=0; |
251 | 251 | ||
252 | if (funct&AR_DISPLAY) | 252 | if ((funct&AR_DISPLAY) || (funct&AR_VERBOSE)) |
253 | displayEntry(&arEntry, funct); | 253 | displayEntry(&arEntry, funct); |
254 | 254 | ||
255 | /* check file was specified to be extracted only if | 255 | /* check file was specified to be extracted only if |