1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s4-dsdb: update repl_meta_data.c to use new DLIST_ macros

This commit is contained in:
Jeremy Allison 2010-02-10 15:35:38 -08:00
parent 32575ed70f
commit f017edc59f

View File

@ -3783,10 +3783,9 @@ static int replmd_prepare_commit(struct ldb_module *module)
/* walk the list backwards, to do the first entry first, as we
* added the entries with DLIST_ADD() which puts them at the
* start of the list */
for (la = replmd_private->la_list; la && la->next; la=la->next) ;
DLIST_TAIL(replmd_private->la_list,la);
for (; la; la=prev) {
prev = la->prev;
prev = DLIST_PREV(la);
DLIST_REMOVE(replmd_private->la_list, la);
ret = replmd_process_linked_attribute(module, la);
if (ret != LDB_SUCCESS) {