summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
authorxerl <puppet@mx.buetow.org>2013-02-03 11:29:31 +0100
committerxerl <puppet@mx.buetow.org>2013-02-03 11:29:31 +0100
commit469d0a4485d65bbea6161782e78781333eb28d8b (patch)
tree70d507a1b3ecc82a67cc945e7bd6b06e02c0ac9e /index.pl
parent835c6ee12cd78cbd8caec77d11e8b074c6e5845e (diff)
add do while loop to Reader.pm, may fixes XML bug
Diffstat (limited to 'index.pl')
-rwxr-xr-xindex.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.pl b/index.pl
index d5a4ef3..985af29 100755
--- a/index.pl
+++ b/index.pl
@@ -9,7 +9,7 @@ use Socket;
use Sys::Hostname;
my $host = hostname();
-my $config = -e "config-$host.txt" ? "config-$host.txt" : 'config.txt';
+my $config = -e "config-$host.txt" ? "config-$host.txt" : 'config.txt';
my Xerl $xerl = Xerl->new( config => $config );
$xerl->run();