X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fafb-auth.c;fp=src%2Fafb-auth.c;h=17d355b04ac74b680ff97b1509181d242a55e9c3;hb=2f0f452807a35a01d879659adb217e1d9234585d;hp=5c62f9f70f7a4b9d5c28e3289ef9e7f7558ceed7;hpb=718de20a3cf830ba2da0a6c37e4588e4df251f1d;p=src%2Fapp-framework-binder.git diff --git a/src/afb-auth.c b/src/afb-auth.c index 5c62f9f7..17d355b0 100644 --- a/src/afb-auth.c +++ b/src/afb-auth.c @@ -29,8 +29,6 @@ #include "afb-cred.h" #include "verbose.h" -static int check_permission(struct afb_xreq *xreq, const char *permission); - int afb_auth_check(struct afb_xreq *xreq, const struct afb_auth *auth) { switch (auth->type) { @@ -46,7 +44,7 @@ int afb_auth_check(struct afb_xreq *xreq, const struct afb_auth *auth) case afb_auth_Permission: if (xreq->cred && auth->text) - return check_permission(xreq, auth->text); + return afb_auth_check_permission(xreq, auth->text); /* TODO: handle case of self permission */ return 1; @@ -73,7 +71,7 @@ int afb_auth_check(struct afb_xreq *xreq, const struct afb_auth *auth) static cynara *handle; static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; -static int check_permission(struct afb_xreq *xreq, const char *permission) +int afb_auth_check_permission(struct afb_xreq *xreq, const char *permission) { int rc; @@ -99,7 +97,7 @@ static int check_permission(struct afb_xreq *xreq, const char *permission) /*********************************************************************************/ #else -static int check_permission(struct afb_xreq *xreq, const char *permission) +int afb_auth_check_permission(struct afb_xreq *xreq, const char *permission) { WARNING("Granting permission %s by default of backend", permission); return 1;