summaryrefslogtreecommitdiffstats
path: root/pimd/pim_mroute.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-03-31 22:28:22 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-03-31 22:28:22 +0200
commite43223bcc38e0eb68c65c1d37c82739716bc0523 (patch)
tree73ecb31fbffb199d4720d72f8b397d6fe37e5d9f /pimd/pim_mroute.c
parentMerge pull request #291 from AnuradhaKaruppiah/pim-ssm (diff)
downloadfrr-e43223bcc38e0eb68c65c1d37c82739716bc0523.tar.xz
frr-e43223bcc38e0eb68c65c1d37c82739716bc0523.zip
pimd: Cleanup unused variable write
There exists a common pattern in pim where we were setting a variable to a value in the error case when we would no longer need it. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_mroute.c')
-rw-r--r--pimd/pim_mroute.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/pimd/pim_mroute.c b/pimd/pim_mroute.c
index 90e30ea3d..2fb243b9b 100644
--- a/pimd/pim_mroute.c
+++ b/pimd/pim_mroute.c
@@ -577,10 +577,8 @@ static int mroute_read(struct thread *t)
if (errno == EINTR)
continue;
if (errno == EWOULDBLOCK || errno == EAGAIN)
- {
- cont = 0;
- break;
- }
+ break;
+
if (PIM_DEBUG_MROUTE)
zlog_warn("%s: failure reading fd=%d: errno=%d: %s",
__PRETTY_FUNCTION__, fd, errno, safe_strerror(errno));