diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-07-03 21:31:11 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-07-03 21:31:11 -0400 |
| commit | db20e34f09fe2b7840cffe0a3237b12865c178cc (patch) | |
| tree | 4872a112e4898d69644d7a6ef4d0831ba9f770ab | |
| parent | d6076845b3f452ed5272022545b7366b6a06c5a7 (diff) | |
pimd: Use generated interface name
When we have a generated interface name, use it instead of the actual
pointer.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
| -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 123c47568c..ae2daf40aa 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -2038,7 +2038,7 @@ static void pim_show_state(struct pim_instance *pim, struct vty *vty, } else { vty_out(vty, "%-9d %-15s %-15s %-7s ", c_oil->installed, src_str, grp_str, - ifp_in->name); + in_ifname); } for (oif_vif_index = 0; oif_vif_index < MAXVIFS; |
