diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-22 15:05:01 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-22 15:05:01 +0000 |
commit | 013bcae0cf1aeac4d8059287ebe72f716a4e8f8b (patch) | |
tree | b931122ae4a201ceaa3e7c8114ee7ed1dce35121 | |
parent | 29706dd23a99be2b2d8f0425b6600f546de91d49 (diff) |
Make error message on finding an un-includable include a bit more helpful
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10905 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | .inspircd.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.inspircd.inc b/.inspircd.inc index ba9de5829..d57460f8f 100644 --- a/.inspircd.inc +++ b/.inspircd.inc @@ -299,7 +299,7 @@ sub getpidfile $filesparsed[$filesparsed] = $file; # Open the File.. - open INFILE, "< $file" or die "Unable to open file $file\n"; + open INFILE, "< $file" or die "Unable to open file $file included in configuration\n"; # Grab entire file contents.. my(@lines) = <INFILE>; # Close the file |