diff options
author | Donald Sharp <donaldsharp72@gmail.com> | 2022-05-04 13:44:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 13:44:26 +0200 |
commit | 59ba0033469b4bff64866b464b82784e710be93b (patch) | |
tree | 90517ed506f5c10dd660617241419518fb2b8640 /bfdd | |
parent | Merge pull request #11142 from patrasar/pim_register_show_fix (diff) | |
parent | lib: change FRR interface name length definition (diff) | |
download | frr-59ba0033469b4bff64866b464b82784e710be93b.tar.xz frr-59ba0033469b4bff64866b464b82784e710be93b.zip |
Merge pull request #11137 from opensourcerouting/if-name-len-fixes
*: standardize interface name maximum length
Diffstat (limited to 'bfdd')
-rw-r--r-- | bfdd/bfd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfdd/bfd.h b/bfdd/bfd.h index 2e3119064..6aa9e0058 100644 --- a/bfdd/bfd.h +++ b/bfdd/bfd.h @@ -190,8 +190,8 @@ struct bfd_key { uint16_t mhop; struct in6_addr peer; struct in6_addr local; - char ifname[MAXNAMELEN]; - char vrfname[MAXNAMELEN]; + char ifname[INTERFACE_NAMSIZ]; + char vrfname[VRF_NAMSIZ]; } __attribute__((packed)); struct bfd_session_stats { |