summaryrefslogtreecommitdiffstats
path: root/src/providers/simple
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-03-19 08:02:06 +0100
committerStephen Gallagher <sgallagh@redhat.com>2012-03-21 11:22:43 -0400
commit2b4332767d299263a288e0a74bbfbc9de674de95 (patch)
tree157b879c273d15c3d68f21ec307298860ec762d5 /src/providers/simple
parent5ca493af3e24e2cf7299289364cf23ccec9e5d35 (diff)
downloadsssd_unused-2b4332767d299263a288e0a74bbfbc9de674de95.tar.gz
sssd_unused-2b4332767d299263a288e0a74bbfbc9de674de95.tar.xz
sssd_unused-2b4332767d299263a288e0a74bbfbc9de674de95.zip
Make the string_equal() function public
Diffstat (limited to 'src/providers/simple')
-rw-r--r--src/providers/simple/simple_access.c17
1 files changed, 4 insertions, 13 deletions
diff --git a/src/providers/simple/simple_access.c b/src/providers/simple/simple_access.c
index 06662e9d..e00079cd 100644
--- a/src/providers/simple/simple_access.c
+++ b/src/providers/simple/simple_access.c
@@ -35,15 +35,6 @@
#define CONFDB_SIMPLE_ALLOW_GROUPS "simple_allow_groups"
#define CONFDB_SIMPLE_DENY_GROUPS "simple_deny_groups"
-static bool string_equal(bool cs, const char *s1, const char *s2)
-{
- if (cs) {
- return strcmp(s1, s2) == 0;
- }
-
- return sss_utf8_case_eq((const uint8_t *)s1, (const uint8_t *)s2) == EOK;
-}
-
errno_t simple_access_check(struct simple_ctx *ctx, const char *username,
bool *access_granted)
{
@@ -68,7 +59,7 @@ errno_t simple_access_check(struct simple_ctx *ctx, const char *username,
/* First, check whether the user is in the allowed users list */
if (ctx->allow_users != NULL) {
for(i = 0; ctx->allow_users[i] != NULL; i++) {
- if (string_equal(cs, username, ctx->allow_users[i])) {
+ if (sss_string_equal(cs, username, ctx->allow_users[i])) {
DEBUG(9, ("User [%s] found in allow list, access granted.\n",
username));
@@ -89,7 +80,7 @@ errno_t simple_access_check(struct simple_ctx *ctx, const char *username,
/* Next check whether this user has been specifically denied */
if (ctx->deny_users != NULL) {
for(i = 0; ctx->deny_users[i] != NULL; i++) {
- if (string_equal(cs, username, ctx->deny_users[i])) {
+ if (sss_string_equal(cs, username, ctx->deny_users[i])) {
DEBUG(9, ("User [%s] found in deny list, access denied.\n",
username));
@@ -200,7 +191,7 @@ errno_t simple_access_check(struct simple_ctx *ctx, const char *username,
matched = false;
for (i = 0; ctx->allow_groups[i]; i++) {
for(j = 0; groups[j]; j++) {
- if (string_equal(cs, groups[j], ctx->allow_groups[i])) {
+ if (sss_string_equal(cs, groups[j], ctx->allow_groups[i])) {
matched = true;
break;
}
@@ -221,7 +212,7 @@ errno_t simple_access_check(struct simple_ctx *ctx, const char *username,
matched = false;
for (i = 0; ctx->deny_groups[i]; i++) {
for(j = 0; groups[j]; j++) {
- if (string_equal(cs, groups[j], ctx->deny_groups[i])) {
+ if (sss_string_equal(cs, groups[j], ctx->deny_groups[i])) {
matched = true;
break;
}