darkstat: correction of a variable in the init script

This is to correct the variable name CONFIGSTR in the export_bool
sub-routine: the variable in line 26 was written CONFIGSTRING instead
of CONFIGSTR.

Signed-off-by: Jean-Michel Lacroix <lacroix@lepine-lacroix.info>
This commit is contained in:
Jean-Michel Lacroix
2018-11-26 18:25:45 -05:00
parent dc7fc9746f
commit 0f24ead01c
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ export_bool () {
config_get_bool _loctmp "$section" "$option"
if [ -n "$_loctmp" ]; then
if [ 1 -eq "$_loctmp" ]; then
CONFIGSTRING="$CONFIGSTRING${_keystr} "
CONFIGSTR="$CONFIGSTR${_keystr} "
fi
fi
}