diff options
author | Nadezhda Ivanova <nadezhda.ivanova@postpath.com> | 2009-11-20 13:22:38 +0200 |
---|---|---|
committer | Nadezhda Ivanova <nadezhda.ivanova@postpath.com> | 2009-11-20 13:22:38 +0200 |
commit | a760f169f4936d7e2677db9229181e2c5ac23bcd (patch) | |
tree | 545c9c43890aa7d1d8cf810eb1d70e85cfd695c5 /source4/ldap_server | |
parent | 07e971f1c169387af806af05aa60b6d021feb898 (diff) | |
download | samba-a760f169f4936d7e2677db9229181e2c5ac23bcd.tar.gz samba-a760f169f4936d7e2677db9229181e2c5ac23bcd.tar.bz2 samba-a760f169f4936d7e2677db9229181e2c5ac23bcd.zip |
Some changes to allow processing of ldap controls on modify requests.
ldap_backend used to filter out ldap controls on modify. Also, modified
python binding for ldap_modify to allow writing tests for such controls.
Diffstat (limited to 'source4/ldap_server')
-rw-r--r-- | source4/ldap_server/ldap_backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ldap_server/ldap_backend.c b/source4/ldap_server/ldap_backend.c index 8c6b8f9fd6..5eabda972e 100644 --- a/source4/ldap_server/ldap_backend.c +++ b/source4/ldap_server/ldap_backend.c @@ -546,7 +546,7 @@ reply: NT_STATUS_HAVE_NO_MEMORY(modify_reply); if (result == LDAP_SUCCESS) { - ldb_ret = ldb_modify(samdb, msg); + ldb_ret = ldb_modify_ctrl(samdb, msg, call->request->controls); result = map_ldb_error(local_ctx, ldb_ret, &errstr); } |