aboutsummaryrefslogtreecommitdiff
path: root/ar.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-08-11 20:11:35 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-08-11 20:11:35 +0000
commit4920e389e10c042d1636eef78167637ba250b201 (patch)
treeaadb1e537f74e4ab35fcdfd8fc43f4038b6e80e9 /ar.c
parent734bf67b5d10b4c2689ec52262288cb2cfbe6f0c (diff)
downloadbusybox-w32-4920e389e10c042d1636eef78167637ba250b201.tar.gz
busybox-w32-4920e389e10c042d1636eef78167637ba250b201.tar.bz2
busybox-w32-4920e389e10c042d1636eef78167637ba250b201.zip
Fix to make 'ar xv' work, thanks to Kent Robotti <robotti@metconnect.com>
-Erik git-svn-id: svn://busybox.net/trunk/busybox@955 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'ar.c')
-rw-r--r--ar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ar.c b/ar.c
index d8c8d465b..b1200b8ae 100644
--- a/ar.c
+++ b/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