aboutsummaryrefslogtreecommitdiffstats
path: root/Controller-afb
diff options
context:
space:
mode:
authorFulup Ar Foll <fulup@iot.bzh>2017-08-21 18:08:19 +0200
committerFulup Ar Foll <fulup@iot.bzh>2017-08-21 18:08:19 +0200
commit8c337984bde9a5e005212d34c4916752c724dc61 (patch)
tree90b9ac9cc64dbc9e96509fe43564205abacd43a0 /Controller-afb
parentddb43e0c12722db65ebf6362e79ec89130769662 (diff)
Documentation and LUA for Ubuntu
Diffstat (limited to 'Controller-afb')
-rw-r--r--Controller-afb/ctl-lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Controller-afb/ctl-lua.c b/Controller-afb/ctl-lua.c
index 01cf1b9..412a158 100644
--- a/Controller-afb/ctl-lua.c
+++ b/Controller-afb/ctl-lua.c
@@ -673,9 +673,9 @@ STATIC void LuaDoAction (LuaDoActionT action, afb_req request) {
const char *func;
json_object *argsJ=NULL;
- err= wrap_json_unpack (queryJ, "{s:s, s?o !}", "request", &func, "args", &argsJ);
+ err= wrap_json_unpack (queryJ, "{s:s, s?o !}", "target", &func, "args", &argsJ);
if (err) {
- AFB_ERROR ("LUA-DOCALL-SYNTAX missing func|args query=%s", json_object_get_string(queryJ));
+ AFB_ERROR ("LUA-DOCALL-SYNTAX missing target|args query=%s", json_object_get_string(queryJ));
goto OnErrorExit;
}