diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-03 08:20:14 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-02-03 08:29:21 -0500 |
| commit | d904a9fc0971a626a0ffc09e40bf2e4a9e2ff138 (patch) | |
| tree | 0bab1525f11a70569410b599cdde00513482aa13 | |
| parent | 55c728031529910cd8358bedb90f75d363afeb4b (diff) | |
ripd: Fix compile warning
This issue was found compiling with ./buildtest.sh
on fedora 25
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
| -rw-r--r-- | ripd/ripd.c | 4 |
1 files 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; } } |
