summaryrefslogtreecommitdiff
path: root/pimd/pim_addr.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2022-01-21 16:47:18 +0100
committerDavid Lamparter <equinox@opensourcerouting.org>2022-02-16 16:40:56 +0100
commitae449dc594e837eaf7eb36de37097d59ad586280 (patch)
tree0275ed4a10720dea04b20111da1eac935e6f61f9 /pimd/pim_addr.c
parent94120cb227b26043e7c353e997e8ebf85dc46674 (diff)
pim6d: remove `PIM_V6_TEMP_BREAK`
It's no longer necessary, pim6d now compiles without this hack. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_addr.c')
-rw-r--r--pimd/pim_addr.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/pimd/pim_addr.c b/pimd/pim_addr.c
index 2a6b4fe20f..6ba0947c2f 100644
--- a/pimd/pim_addr.c
+++ b/pimd/pim_addr.c
@@ -44,9 +44,6 @@ static ssize_t printfrr_pimaddr(struct fbuf *buf, struct printfrr_eargs *ea,
#if PIM_IPV == 4
return bprintfrr(buf, "%pI4", addr);
-#elif !defined(PIM_V6_TEMP_BREAK)
- CPP_NOTICE("note IPv6 typing for pim_addr is temporarily disabled.");
- return bprintfrr(buf, "%pI4", addr);
#else
return bprintfrr(buf, "%pI6", addr);
#endif