Fixes minor bug in BFD.

Thanks to Pavel Tvrdik for noticing it.
This commit is contained in:
Ondrej Zajicek 2015-02-21 14:52:17 +01:00
parent 51762a45b3
commit 8ce9a87755

View file

@ -33,7 +33,7 @@ static inline u8 bfd_pkt_get_version(struct bfd_ctl_packet *pkt)
{ return pkt->vdiag >> 5; }
static inline u8 bfd_pkt_get_diag(struct bfd_ctl_packet *pkt)
{ return pkt->vdiag && 0x1f; }
{ return pkt->vdiag & 0x1f; }
static inline u8 bfd_pkt_get_state(struct bfd_ctl_packet *pkt)