diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2017-08-16 19:18:46 +0200 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2017-08-16 19:18:46 +0200 |
commit | a4899ab57f08aeb2741d08f74d7593c85a0ad3f4 (patch) | |
tree | 64ee18c96a149f67259ddc166814bf2d74eabe00 /Controler-afb/ctl-dispatch.c | |
parent | 61f0f263c335ad403c6693a1b8b6f5428ac180a8 (diff) |
Fix DoScript Lua Updated Documentation.
Diffstat (limited to 'Controler-afb/ctl-dispatch.c')
-rw-r--r-- | Controler-afb/ctl-dispatch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Controler-afb/ctl-dispatch.c b/Controler-afb/ctl-dispatch.c index 22bee27..1afb846 100644 --- a/Controler-afb/ctl-dispatch.c +++ b/Controler-afb/ctl-dispatch.c @@ -589,8 +589,7 @@ PUBLIC int DispatchInit() { int index, err, luaLoaded = 0; char controlFile [CONTROL_MAXPATH_LEN]; - strncpy(controlFile, CONTROL_CONFIG_PRE, CONTROL_MAXPATH_LEN); - strncat(controlFile, "-", CONTROL_MAXPATH_LEN); + strncpy(controlFile, CONTROL_CONFIG_PRE "-", CONTROL_MAXPATH_LEN); strncat(controlFile, GetBinderName(), CONTROL_MAXPATH_LEN); // search for default dispatch config file |