FIX: Fixed ip6_fib_dump api function response.
Change-Id: I26c5d61bc2f6188bcd4ecac4b5e9385821b0398b Signed-off-by: Dmitry Vakhrushev <dmitry@netgate.com>
This commit is contained in:

committed by
Neale Ranns

parent
2ae2bc5380
commit
f38bef46a3
@ -96,6 +96,12 @@ ip_null_dpo_get (index_t indi)
|
||||
return (&ip_null_dpos[indi]);
|
||||
}
|
||||
|
||||
ip_null_dpo_action_t
|
||||
ip_null_dpo_get_action (index_t indi)
|
||||
{
|
||||
return (ip_null_dpos[indi].ind_action);
|
||||
}
|
||||
|
||||
static void
|
||||
ip_null_dpo_lock (dpo_id_t *dpo)
|
||||
{
|
||||
|
@ -53,4 +53,6 @@ extern void ip_null_dpo_add_and_lock (dpo_proto_t proto,
|
||||
|
||||
extern void ip_null_dpo_module_init(void);
|
||||
|
||||
extern ip_null_dpo_action_t ip_null_dpo_get_action(index_t indi);
|
||||
|
||||
#endif
|
||||
|
@ -217,7 +217,7 @@ fib_api_path_encode (const fib_route_path_encode_t * api_rpath,
|
||||
out->is_drop = true;
|
||||
break;
|
||||
case DPO_IP_NULL:
|
||||
switch (api_rpath->dpo.dpoi_index)
|
||||
switch (ip_null_dpo_get_action(api_rpath->dpo.dpoi_index))
|
||||
{
|
||||
case IP_NULL_ACTION_NONE:
|
||||
out->is_drop = true;
|
||||
|
Reference in New Issue
Block a user