diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-08-11 20:11:35 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-08-11 20:11:35 +0000 |
commit | 4920e389e10c042d1636eef78167637ba250b201 (patch) | |
tree | aadb1e537f74e4ab35fcdfd8fc43f4038b6e80e9 /ar.c | |
parent | 734bf67b5d10b4c2689ec52262288cb2cfbe6f0c (diff) | |
download | busybox-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.c | 2 |
1 files changed, 1 insertions, 1 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 |