diff options
author | Russ White <russ@riw.us> | 2021-08-03 19:42:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 19:42:48 +0200 |
commit | efadadc1b65e3962674acba5eb1f1b9df497dbed (patch) | |
tree | d25fbf182a6a5bd932608cf3053bed8920b256f6 | |
parent | Merge pull request #9164 from pguibert6WIND/flowspec_vrflite_shortcut (diff) | |
parent | nhrp: fix display of nhs command. (diff) | |
download | frr-efadadc1b65e3962674acba5eb1f1b9df497dbed.tar.xz frr-efadadc1b65e3962674acba5eb1f1b9df497dbed.zip |
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 dcbc61e92..8441d278f 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, |