prt-auf: less verbosity in the output of 'current'

This commit is contained in:
John McQuah 2023-02-13 11:33:33 -05:00
parent 4760ed2496
commit b31bc84259
1 changed files with 1 additions and 1 deletions

View File

@ -591,7 +591,7 @@ sub port_diff { # returns a scalar indicating how many differences were found
if (! $V_INST{$q}) {
print "$q: not installed\n"; $retval++;
} else {
print "$q: version $V_INST{$q}\n" if ($dtype eq "current");
print "$V_INST{$q}\n" if ($dtype eq "current");
print "$q is installed.\n" if ($dtype eq "isinst");
}
}