summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2007-10-01 19:50:04 +0200
committerOliver Tappe2007-10-01 19:50:04 +0200
commit9823882d3049e2462548555bb53412a630faeb83 (patch)
tree3b4ddcc824066ebdb9b250123e89fdcfaad2d6c7 /config-db
parentSet of cleanups and minor fixes ... (diff)
downloadcore-9823882d3049e2462548555bb53412a630faeb83.tar.gz
core-9823882d3049e2462548555bb53412a630faeb83.tar.xz
core-9823882d3049e2462548555bb53412a630faeb83.zip
* fixed dumb bug that caused argument values to be rejected when they are
empty - doh! git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1362 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-db/slxconfig b/config-db/slxconfig
index c92dee18..a21f02c0 100755
--- a/config-db/slxconfig
+++ b/config-db/slxconfig
@@ -154,7 +154,7 @@ sub parseKeyValueArgs
my %dataHash;
while (my $param = shift) {
- if ($param !~ m[^\s*([\w\-]+)\s*=(.+)$]) {
+ if ($param !~ m[^\s*([\w\-]+)\s*=(.*)$]) {
die _tr(
"value specification %s has unknown format, expected <key>=<value>\n",
$param