aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-api-so-v1.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-so-v1.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-so-v1.c')
-rw-r--r--src/afb-api-so-v1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-api-so-v1.c b/src/afb-api-so-v1.c
index 9a9e47a4..c77ab724 100644
--- a/src/afb-api-so-v1.c
+++ b/src/afb-api-so-v1.c
@@ -239,7 +239,7 @@ int afb_api_so_v1_add(const char *path, void *handle, struct afb_apiset *apiset)
ERROR("binding [%s] bad prefix...", path);
goto error;
}
- if (!afb_api_is_valid_name(desc->binding->v1.prefix)) {
+ if (!afb_api_is_valid_name(desc->binding->v1.prefix, 1)) {
ERROR("binding [%s] invalid prefix...", path);
goto error;
}