fix quiet mode oversight

A line never printed because it checks for the wrong flag instead
of OPTF_QUIET. This fixes it.
This commit is contained in:
anthony
2010-01-12 17:55:07 -07:00
parent b23c5ab4ba
commit c3fa922c2f

View File

@@ -544,7 +544,7 @@ main(int argc, char *argv[])
0;
int ch;
if (!(ulOptions & OPTF_VALIDATE)) {
if (!(ulOptions & OPTF_QUIET)) {
printf("Validating header:\n");
}
fflush(stdout);