aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-api-ws.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-01-31 14:52:08 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2018-01-31 14:57:21 +0100
commit3535d4cb73628c720da1bf74627ded2aec6f2ca1 (patch)
tree2d73036739d0bbc9877131548b156640c9676fb5 /src/afb-api-ws.c
parent379b11154f301a30e79154c0af1ef1f257149efa (diff)
afb-api: Enforce api names to be hookable
Change-Id: Ic1d5cb208c636d3261e1a96c4a81b488cb84a60e Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-api-ws.c')
-rw-r--r--src/afb-api-ws.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-api-ws.c b/src/afb-api-ws.c
index 1a463587..0e4d1d05 100644
--- a/src/afb-api-ws.c
+++ b/src/afb-api-ws.c
@@ -73,7 +73,7 @@ static struct api_ws *api_ws_make(const char *path)
while (length && path[length - 1] != '/' && path[length - 1] != ':')
length = length - 1;
api->api = &api->path[length];
- if (api->api == NULL || !afb_api_is_valid_name(api->api)) {
+ if (api->api == NULL || !afb_api_is_valid_name(api->api, 1)) {
errno = EINVAL;
goto error2;
}