diff options
author | Kamen Mazdrashki <kamenim@samba.org> | 2010-11-07 23:04:33 +0200 |
---|---|---|
committer | Kamen Mazdrashki <kamenim@samba.org> | 2010-11-11 18:54:20 +0000 |
commit | a8495d380ef93f8d236d521c8b1b8bf76f689acf (patch) | |
tree | 765af02dc4d65b093796e86b42ddfecaa5d0d3dd /source4/libnet | |
parent | 227e8dcfcfeeb5721e4f23c2bc183fd63c5bbe30 (diff) | |
download | samba-a8495d380ef93f8d236d521c8b1b8bf76f689acf.tar.gz samba-a8495d380ef93f8d236d521c8b1b8bf76f689acf.tar.bz2 samba-a8495d380ef93f8d236d521c8b1b8bf76f689acf.zip |
s4-repl: dsdb_extended_replicated_objects_convert -> dsdb_replicated_objects_convert/
It is part of dsdb_replicated_* family of functions
Diffstat (limited to 'source4/libnet')
-rw-r--r-- | source4/libnet/libnet_vampire.c | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/source4/libnet/libnet_vampire.c b/source4/libnet/libnet_vampire.c index 4bb0e92547..cb89213fcf 100644 --- a/source4/libnet/libnet_vampire.c +++ b/source4/libnet/libnet_vampire.c @@ -409,17 +409,17 @@ static NTSTATUS libnet_vampire_cb_apply_schema(struct libnet_vampire_cb_state *s s->self_made_schema = NULL; /* Now convert the schema elements again, using the schema we finalised, ready to actually import */ - status = dsdb_extended_replicated_objects_convert(s->ldb, - c->partition->nc.dn, - mapping_ctr, - object_count, - first_object, - linked_attributes_count, - linked_attributes, - s_dsa, - uptodateness_vector, - c->gensec_skey, - s, &schema_objs); + status = dsdb_replicated_objects_convert(s->ldb, + c->partition->nc.dn, + mapping_ctr, + object_count, + first_object, + linked_attributes_count, + linked_attributes, + s_dsa, + uptodateness_vector, + c->gensec_skey, + s, &schema_objs); if (!W_ERROR_IS_OK(status)) { DEBUG(0,("Failed to convert objects when trying to import over DRS (2nd pass, to store remote schema): %s\n", win_errstr(status))); return werror_to_ntstatus(status); @@ -676,17 +676,17 @@ NTSTATUS libnet_vampire_cb_store_chunk(void *private_data, } - status = dsdb_extended_replicated_objects_convert(s->ldb, - c->partition->nc.dn, - mapping_ctr, - object_count, - first_object, - linked_attributes_count, - linked_attributes, - s_dsa, - uptodateness_vector, - c->gensec_skey, - s, &objs); + status = dsdb_replicated_objects_convert(s->ldb, + c->partition->nc.dn, + mapping_ctr, + object_count, + first_object, + linked_attributes_count, + linked_attributes, + s_dsa, + uptodateness_vector, + c->gensec_skey, + s, &objs); if (!W_ERROR_IS_OK(status)) { DEBUG(0,("Failed to convert objects: %s\n", win_errstr(status))); return werror_to_ntstatus(status); |