summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@users.noreply.github.com>2018-06-26 14:42:30 -0400
committerGitHub <noreply@github.com>2018-06-26 14:42:30 -0400
commitcccb13bff11b8e395fdd99ce6a75fae39f321b83 (patch)
treef0d2703dafb92d7b0d1e2a1393bb14d82873d715
parentcf6bc77d282137e08b18a39400f3c4f559bc53f0 (diff)
parentd1b21b9616e3fda279e9bc28f16764cbab9859ec (diff)
Merge pull request #2557 from pacovn/Coverity_1465490_Unchecked_return_value
pimd: return check (Coverity 1465490)
-rw-r--r--pimd/pim_igmp_mtrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_igmp_mtrace.c b/pimd/pim_igmp_mtrace.c
index 673e2ca5b8..95d0278a34 100644
--- a/pimd/pim_igmp_mtrace.c
+++ b/pimd/pim_igmp_mtrace.c
@@ -817,7 +817,7 @@ int igmp_mtrace_recv_qry_req(struct igmp_sock *igmp, struct ip *ip_hdr,
* Previous-hop router not known,
* packet is sent to an appropriate multicast address
*/
- inet_aton(MCAST_ALL_ROUTERS, &nh_addr);
+ (void)inet_aton(MCAST_ALL_ROUTERS, &nh_addr);
}
/* 6.2.2 8. If this router is the Rendez-vous Point */