mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
staticd: fix nexthops without interface
When interface is not set in "ip route" command, CLI passes "(null)" as an interface name instead of an empty string. The actual code in turn uses "nh->ifname[0] != 0" to check if the interface name was set. Fix the problem by changing the "(null)" string into an empty string when populating the nexthop structure. Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
This commit is contained in:
parent
d205208f57
commit
5dfa36b6a7
|
@ -176,6 +176,9 @@ static bool static_nexthop_create(struct nb_cb_create_args *args)
|
|||
nh_vrf = yang_dnode_get_string(args->dnode, "vrf");
|
||||
pn = nb_running_get_entry(args->dnode, NULL, true);
|
||||
|
||||
if (strmatch(ifname, "(null)"))
|
||||
ifname = "";
|
||||
|
||||
if (!static_add_nexthop_validate(nh_vrf, nh_type, &ipaddr))
|
||||
flog_warn(
|
||||
EC_LIB_NB_CB_CONFIG_VALIDATE,
|
||||
|
|
Loading…
Reference in a new issue