summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-03-22 16:49:12 +0100
committerStephen Gallagher <sgallagh@redhat.com>2012-03-29 15:06:58 -0400
commit62def404cb14e02d2903c68fb730c5281ad902fe (patch)
tree29129986fdce381fc91607dc5ecc87afdf4d401a /src/util
parent64f398dca52df6313169f33cfc20a69d51c3bc2b (diff)
downloadsssd-62def404cb14e02d2903c68fb730c5281ad902fe.tar.gz
sssd-62def404cb14e02d2903c68fb730c5281ad902fe.tar.xz
sssd-62def404cb14e02d2903c68fb730c5281ad902fe.zip
Add sss_get_cased_name_list utility function
Diffstat (limited to 'src/util')
-rw-r--r--src/util/usertools.c37
-rw-r--r--src/util/util.h4
2 files changed, 41 insertions, 0 deletions
diff --git a/src/util/usertools.c b/src/util/usertools.c
index 64e8b1037..ff189e32f 100644
--- a/src/util/usertools.c
+++ b/src/util/usertools.c
@@ -182,3 +182,40 @@ sss_get_cased_name(TALLOC_CTX *mem_ctx,
return case_sensitive ? talloc_strdup(mem_ctx, orig_name) :
sss_tc_utf8_str_tolower(mem_ctx, orig_name);
}
+
+errno_t
+sss_get_cased_name_list(TALLOC_CTX *mem_ctx, const char * const *orig,
+ bool case_sensitive, const char ***_cased)
+{
+ const char **out;
+ size_t num, i;
+
+ if (orig == NULL) {
+ *_cased = NULL;
+ return EOK;
+ }
+
+ for (num=0; orig[num]; num++); /* count the num of strings */
+
+ if (num == 0) {
+ *_cased = NULL;
+ return EOK;
+ }
+
+ out = talloc_array(mem_ctx, const char *, num + 1);
+ if (out == NULL) {
+ return ENOMEM;
+ }
+
+ for (i = 0; i < num; i++) {
+ out[i] = sss_get_cased_name(out, orig[i], case_sensitive);
+ if (out[i] == NULL) {
+ talloc_free(out);
+ return ENOMEM;
+ }
+ }
+
+ out[num] = NULL;
+ *_cased = out;
+ return EOK;
+}
diff --git a/src/util/util.h b/src/util/util.h
index 985c78981..da6db1cff 100644
--- a/src/util/util.h
+++ b/src/util/util.h
@@ -405,6 +405,10 @@ char *
sss_get_cased_name(TALLOC_CTX *mem_ctx, const char *orig_name,
bool case_sensitive);
+errno_t
+sss_get_cased_name_list(TALLOC_CTX *mem_ctx, const char * const *orig,
+ bool case_sensitive, const char ***_cased);
+
/* from backup-file.c */
int backup_file(const char *src, int dbglvl);