]> git.ipfire.org Git - people/stevee/guardian.git/blobdiff - modules/Config.pm
Remove any whitespaces from configlines.
[people/stevee/guardian.git] / modules / Config.pm
index 9a8e1fd582e6f7a7ee6fcb70e6f47c5ad383ac50..569b2ceb99da109242265b772d13e66eff9f6795 100644 (file)
@@ -91,15 +91,14 @@ sub ReadConfig ($) {
                # Remove any newlines.
                chomp($line);
 
-               # Remove any spaces at the start and end of the line.
-               $line =~ s/^\s*//;
-               $line =~ s/\s*$//;
-
                # Check line lenght, skip it, if it is longer than, the
                # allowed maximum.
                my $length = length("$line");
                next if ($length gt $maxlength);
 
+               # Remove any whitespaces.
+               $line=~ s/ //g;
+
                # Splitt line into two parts.
                my ($option, $value) = split (/=/, $line);