diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-10-23 16:06:17 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-10-23 16:37:29 +0200 |
commit | 89c42a96fcaa43a7f2c9aef9e708276a639e0051 (patch) | |
tree | 15903897872d0269ae4cfdb37a4159ec453cb0bf /source4/lib/ldb/common/ldb_controls.c | |
parent | a60965b879f4b4c7fc8507073c6000967b80b724 (diff) | |
download | samba-89c42a96fcaa43a7f2c9aef9e708276a639e0051.tar.gz samba-89c42a96fcaa43a7f2c9aef9e708276a639e0051.tar.bz2 samba-89c42a96fcaa43a7f2c9aef9e708276a639e0051.zip |
ldb:rename LDB_CONTROL_BYPASSOPERATIONAL_OID into LDB_CONTROL_BYPASS_OPERATIONAL_OID
It's nicer to have this consistent with "BYPASS_PASSWORD_HASH".
Diffstat (limited to 'source4/lib/ldb/common/ldb_controls.c')
-rw-r--r-- | source4/lib/ldb/common/ldb_controls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_controls.c b/source4/lib/ldb/common/ldb_controls.c index f0afe8a96a..6ce08652a7 100644 --- a/source4/lib/ldb/common/ldb_controls.c +++ b/source4/lib/ldb/common/ldb_controls.c @@ -528,7 +528,7 @@ struct ldb_control **ldb_parse_control_strings(struct ldb_context *ldb, TALLOC_C ldb_oom(ldb); return NULL; } - ctrl[i]->oid = LDB_CONTROL_BYPASSOPERATIONAL_OID; + ctrl[i]->oid = LDB_CONTROL_BYPASS_OPERATIONAL_OID; ctrl[i]->critical = crit; ctrl[i]->data = NULL; |