diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2017-05-16 23:19:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-16 23:19:54 -0500 |
| commit | 0f45c93628edaedfc3584c7ba9cef17fb8f40d15 (patch) | |
| tree | c6b9902a55473cae2febe160524e8e34373717eb | |
| parent | f8c7b8a495ebba47e72677d5ef9ead344f413b22 (diff) | |
| parent | 76ca2fbaa2b8810b7015ee03aafcab25e385fa48 (diff) | |
Merge pull request #547 from donaldsharp/missed_pim_3.0
pimd: Fix core from json static mroute show
| -rw-r--r-- | pimd/pim_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index 1224bc5fc8..d5dbe4f7ab 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -3274,7 +3274,7 @@ static void show_mroute(struct vty *vty, u_char uj) json_object_string_add(json_ifp_out, "group", grp_str); json_object_boolean_true_add(json_ifp_out, "protocolStatic"); json_object_string_add(json_ifp_out, "inboundInterface", in_ifname); - json_object_int_add(json_ifp_out, "iVifI", c_oil->oil.mfcc_parent); + json_object_int_add(json_ifp_out, "iVifI", s_route->c_oil.oil.mfcc_parent); json_object_string_add(json_ifp_out, "outboundInterface", out_ifname); json_object_int_add(json_ifp_out, "oVifI", oif_vif_index); json_object_int_add(json_ifp_out, "ttl", ttl); |
