X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-ws.c;h=7e0adb7ef5a3bf0a9a60bf159db78d47cf03b70e;hb=6634329b7a1a94aa1555649b933010fb9fcd0381;hp=dffe12672c9d3eca6227733ccb17ed6cbfec6707;hpb=a221b08b008c3e3e63dccdbccbcdb7fe8aeb3481;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api-ws.c b/src/afb-api-ws.c index dffe1267..7e0adb7e 100644 --- a/src/afb-api-ws.c +++ b/src/afb-api-ws.c @@ -169,7 +169,6 @@ static int api_ws_socket_inet(const char *path, int server) } freeaddrinfo(rai); return -1; - } static int api_ws_socket(const char *path, int server) @@ -318,7 +317,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 +324,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_lookup(apiset, apiws->api, 1)) { ERROR("Can't provide ws-server for %s: API %s doesn't exist", path, apiws->api); goto error2; }