update test verbosity checks for the new default verbosity

This commit is contained in:
Bill Currie 2002-08-14 22:38:24 +00:00
parent bfd02b6412
commit 01c375c7db
1 changed files with 2 additions and 2 deletions

View File

@ -186,9 +186,9 @@ main (int argc, char **argv)
return 1;
}
for (i = 0; i < pack->numfiles; i++) {
if (options.verbosity > 1)
if (options.verbosity >= 1)
printf ("%6d ", pack->files[i].filelen);
if (options.verbosity > 0)
if (options.verbosity >= 0)
printf ("%s\n", pack->files[i].name);
}
pack_close (pack);