diff options
author | tonvoon <ton.voon@opsera.com> | 2010-04-15 08:58:29 +0000 |
---|---|---|
committer | tonvoon <ton.voon@opsera.com> | 2010-04-15 08:58:29 +0000 |
commit | 9ca059723a6dc4d6b2839f63d42a0e04c12d7cda (patch) | |
tree | adf1945cea2ebc48b98ea4f6b48c9c1281d5e38b | |
parent | 7a09b20b362ce3ac2c1bb26635ddf6b8f9be952d (diff) | |
download | monitoring-plugin-perl-9ca059723a6dc4d6b2839f63d42a0e04c12d7cda.tar.gz |
Missed out the export_ok change
-rw-r--r-- | lib/Nagios/Plugin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Nagios/Plugin.pm b/lib/Nagios/Plugin.pm index a7613b2..c363c7e 100644 --- a/lib/Nagios/Plugin.pm +++ b/lib/Nagios/Plugin.pm | |||
@@ -21,7 +21,7 @@ Nagios::Plugin->mk_accessors(qw( | |||
21 | use Exporter; | 21 | use Exporter; |
22 | our @ISA = qw(Exporter); | 22 | our @ISA = qw(Exporter); |
23 | our @EXPORT = (@STATUS_CODES); | 23 | our @EXPORT = (@STATUS_CODES); |
24 | our @EXPORT_OK = qw(%ERRORS); | 24 | our @EXPORT_OK = qw(%ERRORS %STATUS_TEXT); |
25 | 25 | ||
26 | # CPAN stupidly won't index this module without a literal $VERSION here, | 26 | # CPAN stupidly won't index this module without a literal $VERSION here, |
27 | # so we're forced to duplicate it explicitly | 27 | # so we're forced to duplicate it explicitly |