mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
r16109: Make this module simpiler, don't intercept operations we are not going
to implement.
Andrew Bartlett
(This used to be commit 3252e425b0
)
This commit is contained in:
parent
e5a00c8ca6
commit
4a350fd18f
@ -207,24 +207,6 @@ static int kludge_acl_change(struct ldb_module *module, struct ldb_request *req)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* start a transaction */
|
|
||||||
static int kludge_acl_start_trans(struct ldb_module *module)
|
|
||||||
{
|
|
||||||
return ldb_next_start_trans(module);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* end a transaction */
|
|
||||||
static int kludge_acl_end_trans(struct ldb_module *module)
|
|
||||||
{
|
|
||||||
return ldb_next_end_trans(module);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* delete a transaction */
|
|
||||||
static int kludge_acl_del_trans(struct ldb_module *module)
|
|
||||||
{
|
|
||||||
return ldb_next_del_trans(module);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int kludge_acl_init(struct ldb_module *module)
|
static int kludge_acl_init(struct ldb_module *module)
|
||||||
{
|
{
|
||||||
int ret, i;
|
int ret, i;
|
||||||
@ -294,9 +276,6 @@ static const struct ldb_module_ops kludge_acl_ops = {
|
|||||||
.modify = kludge_acl_change,
|
.modify = kludge_acl_change,
|
||||||
.del = kludge_acl_change,
|
.del = kludge_acl_change,
|
||||||
.rename = kludge_acl_change,
|
.rename = kludge_acl_change,
|
||||||
.start_transaction = kludge_acl_start_trans,
|
|
||||||
.end_transaction = kludge_acl_end_trans,
|
|
||||||
.del_transaction = kludge_acl_del_trans,
|
|
||||||
.init_context = kludge_acl_init
|
.init_context = kludge_acl_init
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user