summaryrefslogtreecommitdiffstats
path: root/ucs2-afb
diff options
context:
space:
mode:
authorTobias Jahnke <tjahnk@users.noreply.github.com>2017-08-14 14:09:21 +0200
committerTobias Jahnke <tjahnk@users.noreply.github.com>2017-08-14 14:11:44 +0200
commit0a2c7df0c9d8ef801ced567d8638ae0c86a63257 (patch)
tree1231f8ac36f1684130ed327422123ebffa42a1b0 /ucs2-afb
parent01475efcf23f47c13f44b057e42decb916117d67 (diff)
fixes missing assignment in API 'listconfig' and removes unnecessary project configuration
Diffstat (limited to 'ucs2-afb')
-rw-r--r--ucs2-afb/ucs_binding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucs2-afb/ucs_binding.c b/ucs2-afb/ucs_binding.c
index 8a1174c..7d27fc6 100644
--- a/ucs2-afb/ucs_binding.c
+++ b/ucs2-afb/ucs_binding.c
@@ -521,7 +521,7 @@ PUBLIC void ucs2_listconfig (struct afb_req request) {
queryJ = afb_req_json(request);
if (queryJ && json_object_object_get_ex (queryJ, "cfgpath" , &tmpJ)) {
- strdup (json_object_get_string(tmpJ));
+ dirList = strdup (json_object_get_string(tmpJ));
} else {
dirList = strdup (UCS2_CFG_PATH);
AFB_NOTICE ("fgpath:missing uses UCS2_CFG_PATH=%s", UCS2_CFG_PATH);