diff options
author | Greg Sabino Mullane | 2011-07-12 02:21:09 +0000 |
---|---|---|
committer | Greg Sabino Mullane | 2011-07-12 02:21:09 +0000 |
commit | 87dbe3cfb40aed5e77afc7328061a8285118df9f (patch) | |
tree | 03a561d25c481f8ca19d5f7e8895388ed98bdc5b /check_postgres.pl | |
parent | 1d4def480d09072df5022a2453aa9e4aa7967656 (diff) |
Switch around probin munging.
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-x | check_postgres.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 27304a28a..41e0aec3e 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -6755,7 +6755,7 @@ sub find_catalog_info { $name .= "($args)"; ## Special transform for probin, which may be different depending on the version - $row->{probin} = '' if $row->{probin} eq '-'; + $row->{probin} = '-' if $row->{probin} eq ''; } |