X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-ws.c;h=1bd107118278975354a421ee1bee3577149e4cba;hb=2e83db0375d44c0b05742e787f6abd4127e2aac8;hp=dffe12672c9d3eca6227733ccb17ed6cbfec6707;hpb=859aa04ec2ee66709261a62d7f002d6a01c97a81;p=src%2Fapp-framework-binder.git 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; }