diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-05-21 15:53:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-21 15:53:08 +0200 |
commit | b1c2b440c983bba57978dae7d96f07258881a4d5 (patch) | |
tree | 5e65ce814a59fd27be9eb4bf5e892ab81f999d1a /bgpd | |
parent | Merge pull request #4376 from opensourcerouting/remove-deprecated-cmd (diff) | |
parent | Revert "lib: Make _find functions treat the head as const" (diff) | |
download | frr-b1c2b440c983bba57978dae7d96f07258881a4d5.tar.xz frr-b1c2b440c983bba57978dae7d96f07258881a4d5.zip |
Merge pull request #4373 from opensourcerouting/ds-dlist
lib: DECLARE_DLIST + DECLARE_HEAP + other datastructure improvements
Diffstat (limited to 'bgpd')
-rw-r--r-- | bgpd/bgp_advertise.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_advertise.h b/bgpd/bgp_advertise.h index 7d2fdf1f0..1b55b6e64 100644 --- a/bgpd/bgp_advertise.h +++ b/bgpd/bgp_advertise.h @@ -23,7 +23,7 @@ #include "lib/typesafe.h" -PREDECL_LIST(bgp_adv_fifo) +PREDECL_DLIST(bgp_adv_fifo) struct update_subgroup; @@ -60,7 +60,7 @@ struct bgp_advertise { struct bgp_path_info *pathi; }; -DECLARE_LIST(bgp_adv_fifo, struct bgp_advertise, fifo) +DECLARE_DLIST(bgp_adv_fifo, struct bgp_advertise, fifo) /* BGP adjacency out. */ struct bgp_adj_out { |