mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 14:10:39 -05:00
Fix loop in glue_tool_sync
This commit is contained in:
parent
914f33fc9a
commit
340d288db3
1 changed files with 1 additions and 1 deletions
|
|
@ -766,7 +766,7 @@ glue_tool_sync (
|
|||
int i;
|
||||
|
||||
/* just sync everyone */
|
||||
for (i = 0; b0->be_nsuffix[i]; i++)
|
||||
for (i = 0; i<gi->nodes; i++)
|
||||
if (gi->n[i].be->be_sync)
|
||||
gi->n[i].be->be_sync (gi->n[i].be);
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue