diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-11-22 09:13:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-22 09:13:58 +0200 |
| commit | b84476e0bb46ea7f6d6b6d180f06602b27a34ecd (patch) | |
| tree | 0e3c7fbed0b2af64511696af62793143feae782b /zebra/rtadv.c | |
| parent | 01af05fbd55edf444d2e39d9de44f5aef2b37719 (diff) | |
| parent | 07b91ca0967fb898e4060367d485b85f965856e2 (diff) | |
Merge pull request #14850 from donaldsharp/IFNAMSIZ_GET_YOUR_SHIT_TOGETHER
*: Let's use the native IFNAMSIZ instead of INTERFACE_NAMSIZ
Diffstat (limited to 'zebra/rtadv.c')
| -rw-r--r-- | zebra/rtadv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/rtadv.c b/zebra/rtadv.c index 9af41cbc39..35df4eb976 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -58,7 +58,7 @@ DEFINE_MTYPE_STATIC(ZEBRA, ADV_IF, "Advertised Interface"); /* adv list node */ struct adv_if { - char name[INTERFACE_NAMSIZ]; + char name[IFNAMSIZ]; struct adv_if_list_item list_item; }; |
