summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortonvoon <ton.voon@opsera.com>2010-04-15 08:58:29 (GMT)
committertonvoon <ton.voon@opsera.com>2010-04-15 08:58:29 (GMT)
commit9ca059723a6dc4d6b2839f63d42a0e04c12d7cda (patch)
treeadf1945cea2ebc48b98ea4f6b48c9c1281d5e38b
parent7a09b20b362ce3ac2c1bb26635ddf6b8f9be952d (diff)
downloadmonitoring-plugin-perl-9ca059723a6dc4d6b2839f63d42a0e04c12d7cda.tar.gz
Missed out the export_ok change
-rw-r--r--lib/Nagios/Plugin.pm2
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(
21use Exporter; 21use Exporter;
22our @ISA = qw(Exporter); 22our @ISA = qw(Exporter);
23our @EXPORT = (@STATUS_CODES); 23our @EXPORT = (@STATUS_CODES);
24our @EXPORT_OK = qw(%ERRORS); 24our @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