diff options
author | Donald Sharp <sharpd@nvidia.com> | 2021-04-06 16:09:48 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2021-04-06 16:09:48 +0200 |
commit | 2a1fa50ecf94248ee0d34235a10462a0bdee62ba (patch) | |
tree | e8553cf6d47cb388fe37ef1c6168a2e403cd614c /nhrpd/nhrp_peer.c | |
parent | Merge pull request #8295 from opensourcerouting/ospf6-topo-stabilize (diff) | |
download | frr-2a1fa50ecf94248ee0d34235a10462a0bdee62ba.tar.xz frr-2a1fa50ecf94248ee0d34235a10462a0bdee62ba.zip |
nhrpd: Fixup tab usage and sockunion2str usage
For some reason the usage of tabs in a string snuck in as well
as using a sockunion2str instead of %pSU. Fix.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to '')
-rw-r--r-- | nhrpd/nhrp_peer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nhrpd/nhrp_peer.c b/nhrpd/nhrp_peer.c index 199f3332d..c1f615d0a 100644 --- a/nhrpd/nhrp_peer.c +++ b/nhrpd/nhrp_peer.c @@ -422,7 +422,7 @@ static void nhrp_process_nat_extension(struct nhrp_packet_parser *pp, if (!sockunion_cmp(proto, &cie_proto)) { debugf(NHRP_DEBUG_COMMON, - "\tcie_nbma for proto %pSU is %pSU", + "cie_nbma for proto %pSU is %pSU", proto, cie_nbma); break; } |