diff options
Diffstat (limited to '.inspircd.inc')
-rw-r--r-- | .inspircd.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.inspircd.inc b/.inspircd.inc index e86ad18d4..4f70bad75 100644 --- a/.inspircd.inc +++ b/.inspircd.inc @@ -110,7 +110,7 @@ sub debug { sub stop { - if (getstatus() == 0) { print "InspIRCd is not running. (Or PID File not found)"; return 0; } + if (getstatus() == 0) { print "InspIRCd is not running. (Or PID File not found)\n"; return 0; } # Get to here, we have something to kill. my $pid = getprocessid(); print "Stopping InspIRCd...\n"; @@ -126,7 +126,7 @@ sub stop { sub getpidfile { - open INFILE, "< $conffile" or die "Couldn't open $conffile"; + open INFILE, "< $conffile" or die "Couldn't open $conffile\n"; my(@lines) = <INFILE>; close INFILE; chomp(@lines); |