diff options
| author | Russ White <russ@riw.us> | 2021-08-03 13:42:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-03 13:42:48 -0400 |
| commit | efadadc1b65e3962674acba5eb1f1b9df497dbed (patch) | |
| tree | d25fbf182a6a5bd932608cf3053bed8920b256f6 | |
| parent | 67831eeebb2e880bb7bcfae4c7d0aafe32730e3b (diff) | |
| parent | 7a807a20d90e0833979c9cfb82ab4e319c5ea175 (diff) | |
Merge pull request #9264 from ak503/nhrp_fix
nhrp: fix display of nhs command.
| -rw-r--r-- | nhrpd/nhrp_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/nhrp_vty.c b/nhrpd/nhrp_vty.c index dcbc61e926..8441d278fc 100644 --- a/nhrpd/nhrp_vty.c +++ b/nhrpd/nhrp_vty.c @@ -1201,7 +1201,7 @@ static int interface_config_write(struct vty *vty) vty_out(vty, "dynamic"); else vty_out(vty, "%pSU", &nhs->proto_addr); - vty_out(vty, "nbma %s\n", nhs->nbma_fqdn); + vty_out(vty, " nbma %s\n", nhs->nbma_fqdn); } list_for_each_entry(mcast, &ad->mcastlist_head, |
