From: Greg Sabino Mullane Date: Tue, 30 Sep 2008 18:40:02 +0000 (-0400) Subject: Change some remaining 'my's to 'our's X-Git-Tag: 2.9.0~244 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=ce8e01dbcb292e3aeeba6eac36a60df21a2e9d9c;p=check_postgres.git Change some remaining 'my's to 'our's --- diff --git a/check_postgres.pl b/check_postgres.pl index ef6dcacc8..4e6402e97 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -159,9 +159,9 @@ if ($OUTPUT ne 'nagios' and $OUTPUT ne 'mrtg' and $OUTPUT ne 'simple') { die qq{Invalid output: must be 'nagios' or 'mrtg' or 'simple'\n}; } -my $MRTG = ($OUTPUT eq 'mrtg' or $OUTPUT eq 'simple') ? 1 : 0; -my (%stats, %statsmsg); -my $SIMPLE = $OUTPUT eq 'simple' ? 1 : 0; +our $MRTG = ($OUTPUT eq 'mrtg' or $OUTPUT eq 'simple') ? 1 : 0; +our (%stats, %statsmsg); +our $SIMPLE = $OUTPUT eq 'simple' ? 1 : 0; ## See if we need to invoke something based on our name our $action = $opt{action} || '';