From d904a9fc0971a626a0ffc09e40bf2e4a9e2ff138 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 3 Feb 2017 08:20:14 -0500 Subject: [PATCH] ripd: Fix compile warning This issue was found compiling with ./buildtest.sh on fedora 25 Signed-off-by: Donald Sharp --- ripd/ripd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ripd/ripd.c b/ripd/ripd.c index e9d610cea7..a99de3876b 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -2281,8 +2281,8 @@ rip_output_process (struct connected *ifc, struct sockaddr_in *to, { if (IS_RIP_DEBUG_PACKET) zlog_debug ("RIP %s/%d is filtered by route-map out", - inet_ntoa (p->prefix), p->prefixlen); - continue; + inet_ntoa (p->prefix), p->prefixlen); + continue; } }