Fix v-c --quiet check. Test v-c in pqd since it doesn't have --quiet.

This commit is contained in:
Daniel Nichter
2012-08-23 10:22:43 -06:00
parent aadbe5887e
commit e98db38499
20 changed files with 145 additions and 19 deletions

View File

@@ -4356,7 +4356,7 @@ sub main {
# ########################################################################
# Do the version-check
# ########################################################################
if ( $o->get('version-check') && ($o->has('quiet') && !$o->get('quiet')) ) {
if ( $o->get('version-check') && (!$o->has('quiet') || !$o->get('quiet')) ) {
Pingback::version_check($dbh);
}