aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-api-ws.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-08-31 18:47:50 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-08-31 18:47:50 +0200
commit2e83db0375d44c0b05742e787f6abd4127e2aac8 (patch)
tree846004a678795804e60627fdc4dd366a64a4e8b0 /src/afb-api-ws.c
parent859aa04ec2ee66709261a62d7f002d6a01c97a81 (diff)
afb-apiset: refactor access to apis
Change-Id: If003067ada5802b7d77f06f560a5d07464909a61 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-api-ws.c')
-rw-r--r--src/afb-api-ws.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/afb-api-ws.c b/src/afb-api-ws.c
index dffe1267..1bd10711 100644
--- a/src/afb-api-ws.c
+++ b/src/afb-api-ws.c
@@ -318,7 +318,6 @@ int afb_api_ws_add_server(const char *path, struct afb_apiset *apiset)
{
int rc;
struct api_ws *apiws;
- struct afb_api api;
/* creates the ws api object */
apiws = api_ws_make(path);
@@ -326,7 +325,7 @@ int afb_api_ws_add_server(const char *path, struct afb_apiset *apiset)
goto error;
/* check api name */
- if (afb_apiset_get(apiset, apiws->api, &api)) {
+ if (afb_apiset_has(apiset, apiws->api, 1)) {
ERROR("Can't provide ws-server for %s: API %s doesn't exist", path, apiws->api);
goto error2;
}