diff options
author | Simo Sorce <idra@samba.org> | 2006-10-25 01:42:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:24:38 -0500 |
commit | 7f833458ca0083654e34cbfde1c6c6510cab1826 (patch) | |
tree | 0e2d7a740b8c29896ed7ee5635d2520b9913945e /source4/lib/ldb/modules/ldb_map_inbound.c | |
parent | 3cee746a3f23f1040daa60d1208145bff87b3d01 (diff) | |
download | samba-7f833458ca0083654e34cbfde1c6c6510cab1826.tar.gz samba-7f833458ca0083654e34cbfde1c6c6510cab1826.tar.bz2 samba-7f833458ca0083654e34cbfde1c6c6510cab1826.zip |
r19489: Change ldb_msg_add_value and ldb_msg_add_empty to take a foruth argument.
This is a pointer to an element pointer. If it is not null it will be
filled with the pointer of the manipulated element.
Will avoid double searches on the elements list in some cases.
(This used to be commit 0fa5d4bc225b83e9f63ac6d75bffc4c08eb6b620)
Diffstat (limited to 'source4/lib/ldb/modules/ldb_map_inbound.c')
-rw-r--r-- | source4/lib/ldb/modules/ldb_map_inbound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/modules/ldb_map_inbound.c b/source4/lib/ldb/modules/ldb_map_inbound.c index 404b2ce528..b83a17e502 100644 --- a/source4/lib/ldb/modules/ldb_map_inbound.c +++ b/source4/lib/ldb/modules/ldb_map_inbound.c @@ -345,7 +345,7 @@ int map_modify_do_local(struct ldb_handle *handle) /* Add local 'IS_MAPPED' */ /* TODO: use GUIDs here instead */ dn = ldb_dn_linearize(msg, ac->remote_req->op.mod.message->dn); - if (ldb_msg_add_empty(msg, IS_MAPPED, LDB_FLAG_MOD_ADD) != 0) { + if (ldb_msg_add_empty(msg, IS_MAPPED, LDB_FLAG_MOD_ADD, NULL) != 0) { return LDB_ERR_OPERATIONS_ERROR; } if (ldb_msg_add_string(msg, IS_MAPPED, dn) != 0) { |