s4:dsdb/acl: remove unused "acl:perform" option
authorStefan Metzmacher <metze@samba.org>
Wed, 21 Nov 2012 11:15:00 +0000 (12:15 +0100)
committerMichael Adam <obnox@samba.org>
Fri, 30 Nov 2012 16:17:20 +0000 (17:17 +0100)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
source4/dsdb/samdb/ldb_modules/acl.c

index 0c4131f810e7979358fa2efb6efdf92a9ba7c975..9a7b01b265889caf97b5421f2ef83d8d41265220 100644 (file)
@@ -49,7 +49,6 @@ struct extended_access_check_attribute {
 };
 
 struct acl_private {
-       bool acl_perform;
        const char **password_attrs;
        void *cached_schema_ptr;
        uint64_t cached_schema_metadata_usn;
@@ -100,8 +99,6 @@ static int acl_module_init(struct ldb_module *module)
                return ldb_oom(ldb);
        }
 
-       data->acl_perform = lpcfg_parm_bool(ldb_get_opaque(ldb, "loadparm"),
-                                        NULL, "acl", "perform", false);
        ldb_module_set_private(module, data);
 
        mem_ctx = talloc_new(module);