allow use of unzip version 6.0

Unzip 6.0 changes the name of the fourth column in the "unzip -lv"
output from "Ratio" to "Cmpr".  Allow either name so that
dump-package-stats works with both unzip 5 and unzip 6.
This commit is contained in:
Doug Zongker 2009-11-09 18:19:48 -08:00
parent 216faf3f1c
commit f17e63879c
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ do
$1 != "Length" ||
$2 != "Method" ||
$3 != "Size" ||
$4 != "Ratio" ||
($4 != "Ratio" && $4 != "Cmpr") ||
$5 != "Date" ||
$6 != "Time" ||
$7 != "CRC-32" ||