From: Klement Sekera Date: Wed, 8 Feb 2017 06:42:08 +0000 (+0100) Subject: BFD: minor fixes X-Git-Tag: v17.04-rc1~242 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F74%2F5074%2F1;p=vpp.git BFD: minor fixes Change-Id: I1c93f96a752eb2ffd1117a656552131cde1fa489 Signed-off-by: Klement Sekera --- diff --git a/src/vnet/bfd/bfd_main.c b/src/vnet/bfd/bfd_main.c index 798d0631dd7..0c5f1986768 100644 --- a/src/vnet/bfd/bfd_main.c +++ b/src/vnet/bfd/bfd_main.c @@ -526,8 +526,8 @@ bfd_add_sha1_auth_section (vlib_buffer_t * b, bfd_session_t * bs) SHA1 ((unsigned char *) pkt, sizeof (*pkt), hash); BFD_DBG ("hashing: %U", format_hex_bytes, pkt, sizeof (*pkt)); clib_memcpy (auth->hash, hash, sizeof (hash)); -#endif } +#endif static void bfd_add_auth_section (vlib_buffer_t * b, bfd_session_t * bs) diff --git a/src/vnet/bfd/bfd_udp.c b/src/vnet/bfd/bfd_udp.c index e21b887c47e..e1ff8a9d887 100644 --- a/src/vnet/bfd/bfd_udp.c +++ b/src/vnet/bfd/bfd_udp.c @@ -637,8 +637,7 @@ bfd_udp4_verify_transport (const ip4_header_t * ip4, expected_ttl); return BFD_UDP_ERROR_BAD; } - if (clib_net_to_host_u16 (udp->src_port) < 49152 || - clib_net_to_host_u16 (udp->src_port) > 65535) + if (clib_net_to_host_u16 (udp->src_port) < 49152) { BFD_ERR ("Invalid UDP src port %u, out of range <49152,65535>", udp->src_port); @@ -805,8 +804,7 @@ bfd_udp6_verify_transport (const ip6_header_t * ip6, ip6->hop_limit, expected_hop_limit); return BFD_UDP_ERROR_BAD; } - if (clib_net_to_host_u16 (udp->src_port) < 49152 || - clib_net_to_host_u16 (udp->src_port) > 65535) + if (clib_net_to_host_u16 (udp->src_port) < 49152) { BFD_ERR ("Invalid UDP src port %u, out of range <49152,65535>", udp->src_port);