Skip to content
Snippets Groups Projects
Commit 88efa3ce authored by Marek Vavruša's avatar Marek Vavruša
Browse files

zone: fixed master rotation breaking list pointers

parent 178f1dee
No related branches found
No related tags found
No related merge requests found
......@@ -254,11 +254,12 @@ const conf_iface_t *zone_master(const zone_t *zone)
void zone_master_rotate(const zone_t *zone)
{
if (zone_master(zone) == NULL) {
list_t *master_list = &zone->conf->acl.xfr_in;
if (list_size(master_list) < 2) {
return;
}
list_t *master_list = &zone->conf->acl.xfr_in;
add_tail(master_list, HEAD(*master_list));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment