summaryrefslogtreecommitdiff
path: root/src/modules/ns_noop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/ns_noop.c')
-rw-r--r--src/modules/ns_noop.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/modules/ns_noop.c b/src/modules/ns_noop.c
index 60a0a57a9..7ab163fc3 100644
--- a/src/modules/ns_noop.c
+++ b/src/modules/ns_noop.c
@@ -36,8 +36,6 @@
#define AUTOOP_DESC 6
#define AUTOOP_HELP 7
-char *ns_noop_tmp;
-
/*************************************************************************/
User *currentUser;
@@ -322,9 +320,10 @@ int mSaveData(int argc, char **argv)
**/
int mLoadConfig(int argc, char **argv)
{
+ char *tmp = NULL;
Directive d[] = {
- {"NSAutoOPDBName", {{PARAM_STRING, PARAM_RELOAD, &ns_noop_tmp}}},
+ {"NSAutoOPDBName", {{PARAM_STRING, PARAM_RELOAD, &tmp}}},
};
moduleGetConfigDirective(d);
@@ -332,8 +331,8 @@ int mLoadConfig(int argc, char **argv)
if (NSAutoOPDBName)
free(NSAutoOPDBName);
- if (ns_noop_tmp) {
- NSAutoOPDBName = sstrdup(ns_noop_tmp);
+ if (tmp) {
+ NSAutoOPDBName = tmp;
} else {
NSAutoOPDBName = sstrdup(DEFAULT_DB_NAME);
alog("ns_noop: NSAutoOPDBName is not defined in Services configuration file, using default %s", NSAutoOPDBName);