diff options
author | Alexander Skorichenko <askorichenko@netgate.com> | 2023-11-24 09:59:42 +0100 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2023-11-27 22:07:43 +0000 |
commit | 4b08632748727486e7ebfdcf4d992743595bc500 (patch) | |
tree | 4f286d885cd2761940347924fb1d0c6f7740b754 /src | |
parent | 176cff55b17764d4645867b7b663c2ad0478ee19 (diff) |
fib: fix fib_path_create() with drop targets
Properly set type
path->fp_type = FIB_PATH_TYPE_SPECIAL
for paths with (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP)
Type: fix
Change-Id: Id61dbcda781d872b878e6a6410c05b840795ed46
Signed-off-by: Alexander Skorichenko <askorichenko@netgate.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/fib/fib_path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/fib/fib_path.c b/src/vnet/fib/fib_path.c index 8d160d99ccc..1cc65b67cb8 100644 --- a/src/vnet/fib/fib_path.c +++ b/src/vnet/fib/fib_path.c @@ -1365,7 +1365,8 @@ fib_path_create (fib_node_index_t pl_index, dpo_copy(&path->exclusive.fp_ex_dpo, &rpath->dpo); } else if ((path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_PROHIBIT) || - (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH)) + (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_ICMP_UNREACH) || + (path->fp_cfg_flags & FIB_PATH_CFG_FLAG_DROP)) { path->fp_type = FIB_PATH_TYPE_SPECIAL; } |