diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-10 17:02:10 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-10 23:39:47 +0200 |
commit | 33c4b85058f21ab9865bc7cf1b49b7bd38e0275d (patch) | |
tree | 2abf2c439f8156893ebb87620b2c14f8c6b88082 /source4/dsdb/common/util.c | |
parent | 8f6ca4859c4d377974fa61a3de10d6304b562986 (diff) | |
download | samba-33c4b85058f21ab9865bc7cf1b49b7bd38e0275d.tar.gz samba-33c4b85058f21ab9865bc7cf1b49b7bd38e0275d.tar.xz samba-33c4b85058f21ab9865bc7cf1b49b7bd38e0275d.zip |
dsdb: Move attr_in_list to SAMDB_COMMON to avoid circular dependency between SAMDB_COMMON and DSDB_MODULE_HELPERS.
Diffstat (limited to 'source4/dsdb/common/util.c')
-rw-r--r-- | source4/dsdb/common/util.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 71215212fc..0a002197f5 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -42,7 +42,6 @@ #include "lib/util/tsort.h" #include "dsdb/common/util.h" #include "lib/socket/socket.h" -#include "dsdb/samdb/ldb_modules/util.h" #include "librpc/gen_ndr/irpc.h" /* @@ -4253,3 +4252,15 @@ bool dsdb_attr_in_parse_tree(struct ldb_parse_tree *tree, return false; } +bool is_attr_in_list(const char * const * attrs, const char *attr) +{ + unsigned int i; + + for (i = 0; attrs[i]; i++) { + if (ldb_attr_cmp(attrs[i], attr) == 0) + return true; + } + + return false; +} + |