diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-07-02 10:28:42 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-07-02 10:32:02 +0200 |
commit | 0a391223acc78c7338fe3a38b61742f3cb67b551 (patch) | |
tree | dbdf495cf2c1c955a9ecf3a145c3c10a0b4844a2 | |
parent | fe174cc1415d5c55e7d8d2bb861a66f2203e68fe (diff) | |
download | samba-0a391223acc78c7338fe3a38b61742f3cb67b551.tar.gz samba-0a391223acc78c7338fe3a38b61742f3cb67b551.tar.bz2 samba-0a391223acc78c7338fe3a38b61742f3cb67b551.zip |
ldap_server: allow modifies to the root dse record and pass them to the ldb layer
metze
(This used to be commit 3da6f7f95d7c04cff49fa2312f94c059686d11e4)
-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 9047773529..2193c989cf 100644 --- a/source4/ldap_server/ldap_backend.c +++ b/source4/ldap_server/ldap_backend.c @@ -348,7 +348,7 @@ static NTSTATUS ldapsrv_ModifyRequest(struct ldapsrv_call *call) NT_STATUS_HAVE_NO_MEMORY(local_ctx); dn = ldb_dn_new(local_ctx, samdb, req->dn); - VALID_DN_SYNTAX(dn, 1); + VALID_DN_SYNTAX(dn, 0); DEBUG(10, ("ModifyRequest: dn: [%s]\n", req->dn)); |