diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-12-19 15:24:36 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-12-20 14:44:39 +1100 |
commit | 6488afaafe028ad2deba03517294b577ea3b4167 (patch) | |
tree | 3231946871bb56b45017189416208172c201b665 /source4/dsdb/repl | |
parent | dd5a4681e8bc009e16d3586471630933710dd190 (diff) | |
download | samba-6488afaafe028ad2deba03517294b577ea3b4167.tar.gz samba-6488afaafe028ad2deba03517294b577ea3b4167.tar.bz2 samba-6488afaafe028ad2deba03517294b577ea3b4167.zip |
Now store the GUID and SID from a DN over DRSUAPI into ldb.
Until the extended DN work was compleated, there was no way to store
the additional metadata.
Andrew Bartlett
Diffstat (limited to 'source4/dsdb/repl')
-rw-r--r-- | source4/dsdb/repl/replicated_objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/repl/replicated_objects.c b/source4/dsdb/repl/replicated_objects.c index 9853a75347..560f75da7a 100644 --- a/source4/dsdb/repl/replicated_objects.c +++ b/source4/dsdb/repl/replicated_objects.c @@ -282,7 +282,7 @@ static WERROR dsdb_convert_object(struct ldb_context *ldb, status = dsdb_decrypt_attribute(gensec_skey, rid, a); W_ERROR_NOT_OK_RETURN(status); - status = dsdb_attribute_drsuapi_to_ldb(schema, a, msg->elements, e); + status = dsdb_attribute_drsuapi_to_ldb(ldb, schema, a, msg->elements, e); W_ERROR_NOT_OK_RETURN(status); m->attid = a->attid; |