summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2006-09-26 10:09:41 +0200
committerOliver Tappe2006-09-26 10:09:41 +0200
commiteb5ff39205f5c373192488ee10e6a79bc63bbbd1 (patch)
treeee245456ea77465b422a733a5a136266d0a1a3bb /config-db
parent* added a script that generates a rather simple testing dataset (diff)
downloadcore-eb5ff39205f5c373192488ee10e6a79bc63bbbd1.tar.gz
core-eb5ff39205f5c373192488ee10e6a79bc63bbbd1.tar.xz
core-eb5ff39205f5c373192488ee10e6a79bc63bbbd1.zip
* fixed generation of client-config file, env-vars do not like spaces in initialization.
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@392 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxconfig-demuxer.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-db/slxconfig-demuxer.pl b/config-db/slxconfig-demuxer.pl
index affff317..74916c73 100755
--- a/config-db/slxconfig-demuxer.pl
+++ b/config-db/slxconfig-demuxer.pl
@@ -121,7 +121,7 @@ sub writeAttributesToFile
foreach my $attr (@attrs) {
if (length($attrHash->{$attr}) > 0) {
my $externalAttrName = externalAttrName($attr);
- print ATTRS "$externalAttrName = $attrHash->{$attr}\n";
+ print ATTRS "$externalAttrName=$attrHash->{$attr}\n";
}
}
close(ATTRS);