summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/ldb_tdb/ldb_search.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-05-09 12:30:30 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:51:50 -0500
commit51d5ddecc60b6e33e1d542cb92b2fe6736849398 (patch)
tree8129d864e86c8005337d2e48d39cbb4ab6fe9fde /source4/lib/ldb/ldb_tdb/ldb_search.c
parent9652ed4de87d2bc449c0dd5fe07f4e15190511f0 (diff)
downloadsamba-51d5ddecc60b6e33e1d542cb92b2fe6736849398.tar.gz
samba-51d5ddecc60b6e33e1d542cb92b2fe6736849398.tar.bz2
samba-51d5ddecc60b6e33e1d542cb92b2fe6736849398.zip
r606: added a HIDDEN attribute on fields in ldb (in @ATTRIBUTES). This allows you to mark
an attribute as only appearing in searches that explicitly name it. It will be used for attributes like nTSecurityDescriptor (This used to be commit f5cd3d733b71368ea652f8a4d653d87f45ff983f)
Diffstat (limited to 'source4/lib/ldb/ldb_tdb/ldb_search.c')
-rw-r--r--source4/lib/ldb/ldb_tdb/ldb_search.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/lib/ldb/ldb_tdb/ldb_search.c b/source4/lib/ldb/ldb_tdb/ldb_search.c
index e2c83202e9..25e22b3dd4 100644
--- a/source4/lib/ldb/ldb_tdb/ldb_search.c
+++ b/source4/lib/ldb/ldb_tdb/ldb_search.c
@@ -135,6 +135,10 @@ static int msg_add_all_elements(struct ldb_context *ldb, struct ldb_message *ret
{
int i;
for (i=0;i<msg->num_elements;i++) {
+ int flags = ltdb_attribute_flags(ldb, msg->elements[i].name);
+ if (flags & LTDB_FLAG_HIDDEN) {
+ continue;
+ }
if (msg_add_element(ldb, ret, &msg->elements[i]) != 0) {
return -1;
}