1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s4:dsdb/acl: remove unused "acl:perform" option

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Stefan Metzmacher 2012-11-21 12:15:00 +01:00 committed by Michael Adam
parent 329afc1a20
commit 3d57f17db9

View 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);