summaryrefslogtreecommitdiffstats
path: root/plugins-scripts/check_ircd.pl
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-scripts/check_ircd.pl')
-rwxr-xr-xplugins-scripts/check_ircd.pl12
1 files changed, 3 insertions, 9 deletions
diff --git a/plugins-scripts/check_ircd.pl b/plugins-scripts/check_ircd.pl
index e4c4bd0..098a8e7 100755
--- a/plugins-scripts/check_ircd.pl
+++ b/plugins-scripts/check_ircd.pl
@@ -38,15 +38,8 @@
38# with perl -wT and 'use strict' 38# with perl -wT and 'use strict'
39# 39#
40# test using check_ircd.pl (irc-2.mit.edu|irc.erols.com|irc.core.com) 40# test using check_ircd.pl (irc-2.mit.edu|irc.erols.com|irc.core.com)
41# 2002/05/02 SG Fixed for Embedded Perl
41# 42#
42# ------------------------------------------------------------------[ Begin ]--
43
44BEGIN {
45 if ($0 =~ m/^(.*?)[\/\\]([^\/\\]+)$/) {
46 $runtimedir = $1;
47 $PROGNAME = $2;
48 }
49}
50 43
51# ----------------------------------------------------------------[ Require ]-- 44# ----------------------------------------------------------------[ Require ]--
52 45
@@ -59,7 +52,8 @@ use strict;
59use Getopt::Long; 52use Getopt::Long;
60use vars qw($opt_V $opt_h $opt_t $opt_p $opt_H $opt_w $opt_c $verbose); 53use vars qw($opt_V $opt_h $opt_t $opt_p $opt_H $opt_w $opt_c $verbose);
61use vars qw($PROGNAME); 54use vars qw($PROGNAME);
62use lib $main::runtimedir; 55use FindBin;
56use lib "$FindBin::Bin";
63use utils qw($TIMEOUT %ERRORS &print_revision &support &usage); 57use utils qw($TIMEOUT %ERRORS &print_revision &support &usage);
64 58
65# ----------------------------------------------------[ Function Prototypes ]-- 59# ----------------------------------------------------[ Function Prototypes ]--