From 0f24ead01c81b2ce224822f0d8a0ba6130dfa5fc Mon Sep 17 00:00:00 2001 From: Jean-Michel Lacroix Date: Mon, 26 Nov 2018 18:25:45 -0500 Subject: [PATCH] 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 --- net/darkstat/Makefile | 2 +- net/darkstat/files/darkstat.init | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/darkstat/Makefile b/net/darkstat/Makefile index 40d6065521..f7c8508f72 100644 --- a/net/darkstat/Makefile +++ b/net/darkstat/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=darkstat PKG_VERSION:=3.0.719 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_MAINTAINER:=Jean-Michel Lacroix diff --git a/net/darkstat/files/darkstat.init b/net/darkstat/files/darkstat.init index 040188f0a4..4cd8b3ef3c 100755 --- a/net/darkstat/files/darkstat.init +++ b/net/darkstat/files/darkstat.init @@ -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 }