From 1fc47e1228b7f32ad0d6636d09d63d3b1c124aaa Mon Sep 17 00:00:00 2001 From: Nadezhda Ivanova Date: Thu, 5 Nov 2009 17:34:12 +0200 Subject: Version 1.0 of the directory service acls module. At this point, support for checks on LDAP add, delete, rename and modify. Old kludge_acl is still there to handle the searches. This module is synchronous as the async version was impossible to debug, will be converted to async after some user testing. --- source4/libcli/security/security.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source4/libcli/security/security.h') diff --git a/source4/libcli/security/security.h b/source4/libcli/security/security.h index 18f6c820d1..bdf473bcf1 100644 --- a/source4/libcli/security/security.h +++ b/source4/libcli/security/security.h @@ -32,10 +32,8 @@ struct auth_session_info; struct object_tree { uint32_t remaining_access; struct GUID guid; - /* linked list of children */ - struct object_tree * children; - struct object_tree * prev; - struct object_tree * next; + int num_of_children; + struct object_tree *children; }; /* Moved the dom_sid functions to the top level dir with manual proto header */ -- cgit