]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/agg_table.c
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / agg_table.c
index 6033fc3f0567af6ca7d63eca820301c541797f04..dad6a13d674a6c445be069d0be6d9cb5b54173dc 100644 (file)
@@ -53,7 +53,7 @@ struct agg_table *agg_table_init(void)
        at = XCALLOC(MTYPE_TMP, sizeof(struct agg_table));
 
        at->route_table = route_table_init_with_delegate(&agg_table_delegate);
-       at->route_table->info = at;
+       route_table_set_info(at->route_table, at);
 
        return at;
 }