From dd49cf696c14c1189efa9eca5318b856a804c985 Mon Sep 17 00:00:00 2001 From: Daniel De Graaf Date: Wed, 20 Oct 2010 21:16:10 -0400 Subject: Fix taint mode execution --- make/template/inspircd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'make/template/inspircd') diff --git a/make/template/inspircd b/make/template/inspircd index ed98a186b..1b9f25a86 100644 --- a/make/template/inspircd +++ b/make/template/inspircd @@ -380,16 +380,16 @@ sub getpidfile sub getstatus { my $pid = getprocessid(); return 0 if $pid == 0; - return kill 0, $pid; + return kill 0, $1; } sub getprocessid { - my $pid; - open PIDFILE, "< $pidfile" or return 0; + my $pid = 0; + open PIDFILE, '<', $pidfile or return 0; while() { - $pid = $_; + /(\d+)/ and $pid = $1; } close PIDFILE; return $pid; -- cgit v1.2.3