summaryrefslogtreecommitdiffstats
path: root/modules/conf
diff options
context:
space:
mode:
Diffstat (limited to 'modules/conf')
-rwxr-xr-xmodules/conf/confmaker.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/conf/confmaker.pl b/modules/conf/confmaker.pl
index 752399c..ef76fe1 100755
--- a/modules/conf/confmaker.pl
+++ b/modules/conf/confmaker.pl
@@ -65,15 +65,15 @@ $nextarg = 1;
if (@ARGV[$nextarg] eq "-o") {
$outputFileName = "@ARGV[$nextarg+1]";
$nextarg += 2;
- open (OUTF,, ">:utf8", "$outputFileName") or die "Could not open file $outputFileName for writing.";
+ open (OUTF,, ">", "$outputFileName") or die "Could not open file $outputFileName for writing.";
select(OUTF)
}
if (@ARGV[$nextarg] eq "-i") {
$inputFileName = "@ARGV[$nextarg+1]";
$nextarg += 2;
- open (INF,, "<:utf8","$inputFileName") or die "Could not open inputfile $inputFileName for reading ;
- @inputfile = <INF>;
+ open (INF,, "<","$inputFileName") or die "Could not open inputfile $inputFileName for reading" ;
+ @inputFile = <INF>;
}
if (@ARGV[$nextarg] eq "-m") {