From: Donald Sharp Date: Fri, 1 Jun 2018 00:45:49 +0000 (-0400) Subject: ripd: Intentionally ignore return from rip_send_packet X-Git-Tag: frr-6.1-dev~373^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=b2608623176634e0d9b383f7a91b6f4b05bcca1e;p=matthieu%2Ffrr.git ripd: Intentionally ignore return from rip_send_packet Coverity SA has noticed that we are not ignoring the return codes from rip_send_packet in one case. Since we do not care let the system know we don't. Signed-off-by: Donald Sharp --- diff --git a/ripd/ripd.c b/ripd/ripd.c index ecc4027008..92c27106d5 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -1641,7 +1641,7 @@ static void rip_request_process(struct rip_packet *packet, int size, } packet->command = RIP_RESPONSE; - rip_send_packet((uint8_t *)packet, size, from, ifc); + (void)rip_send_packet((uint8_t *)packet, size, from, ifc); } rip_global_queries++; }