diff options
author | Donald Sharp <sharpd@nvidia.com> | 2022-04-02 13:38:11 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2022-04-02 13:46:19 +0200 |
commit | 61879cab13b362db334af8e015076b6a959ab5b1 (patch) | |
tree | e5fe6d226385ef7894c9d87721dc67c79b680225 | |
parent | *: Fix spelling of ojbect (diff) | |
download | frr-61879cab13b362db334af8e015076b6a959ab5b1.tar.xz frr-61879cab13b362db334af8e015076b6a959ab5b1.zip |
*: Fix spelling of Inteface
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
-rw-r--r-- | doc/developer/draft-zebra-00.ms | 8 | ||||
-rw-r--r-- | pbrd/pbr_zebra.c | 2 | ||||
-rw-r--r-- | ripd/rip_interface.c | 6 | ||||
-rw-r--r-- | ripngd/ripng_interface.c | 6 | ||||
-rw-r--r-- | staticd/static_zebra.c | 2 |
5 files changed, 12 insertions, 12 deletions
diff --git a/doc/developer/draft-zebra-00.ms b/doc/developer/draft-zebra-00.ms index 25994727a..b5d692461 100644 --- a/doc/developer/draft-zebra-00.ms +++ b/doc/developer/draft-zebra-00.ms @@ -179,13 +179,13 @@ Interface information message format. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Index (1) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -| Inteface flag (4) | +| Interface flag (4) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -| Inteface metric (4) | +| Interface metric (4) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -| Inteface MTU (4) | +| Interface MTU (4) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -| Inteface Address count (4) | +| Interface Address count (4) | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ .DE .sp diff --git a/pbrd/pbr_zebra.c b/pbrd/pbr_zebra.c index da4e3e1bc..4506dc1af 100644 --- a/pbrd/pbr_zebra.c +++ b/pbrd/pbr_zebra.c @@ -64,7 +64,7 @@ void pbr_if_del(struct interface *ifp) XFREE(MTYPE_PBR_INTERFACE, ifp->info); } -/* Inteface addition message from zebra. */ +/* Interface addition message from zebra. */ int pbr_ifp_create(struct interface *ifp) { DEBUGD(&pbr_dbg_zebra, "%s: %s", __func__, ifp->name); diff --git a/ripd/rip_interface.c b/ripd/rip_interface.c index 738b5c648..042c9713b 100644 --- a/ripd/rip_interface.c +++ b/ripd/rip_interface.c @@ -311,7 +311,7 @@ int if_check_address(struct rip *rip, struct in_addr addr) return 0; } -/* Inteface link down message processing. */ +/* Interface link down message processing. */ static int rip_ifp_down(struct interface *ifp) { rip_interface_sync(ifp); @@ -327,7 +327,7 @@ static int rip_ifp_down(struct interface *ifp) return 0; } -/* Inteface link up message processing */ +/* Interface link up message processing */ static int rip_ifp_up(struct interface *ifp) { if (IS_RIP_DEBUG_ZEBRA) @@ -351,7 +351,7 @@ static int rip_ifp_up(struct interface *ifp) return 0; } -/* Inteface addition message from zebra. */ +/* Interface addition message from zebra. */ static int rip_ifp_create(struct interface *ifp) { rip_interface_sync(ifp); diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c index 66e109985..5159a9825 100644 --- a/ripngd/ripng_interface.c +++ b/ripngd/ripng_interface.c @@ -198,7 +198,7 @@ static int ripng_if_down(struct interface *ifp) return 0; } -/* Inteface link up message processing. */ +/* Interface link up message processing. */ static int ripng_ifp_up(struct interface *ifp) { if (IS_RIPNG_DEBUG_ZEBRA) @@ -222,7 +222,7 @@ static int ripng_ifp_up(struct interface *ifp) return 0; } -/* Inteface link down message processing. */ +/* Interface link down message processing. */ static int ripng_ifp_down(struct interface *ifp) { ripng_interface_sync(ifp); @@ -238,7 +238,7 @@ static int ripng_ifp_down(struct interface *ifp) return 0; } -/* Inteface addition message from zebra. */ +/* Interface addition message from zebra. */ static int ripng_ifp_create(struct interface *ifp) { ripng_interface_sync(ifp); diff --git a/staticd/static_zebra.c b/staticd/static_zebra.c index af153b4bc..bf0e4e8ab 100644 --- a/staticd/static_zebra.c +++ b/staticd/static_zebra.c @@ -87,7 +87,7 @@ static struct static_nht_hash_head static_nht_hash[1]; struct zclient *zclient; uint32_t zebra_ecmp_count = MULTIPATH_NUM; -/* Inteface addition message from zebra. */ +/* Interface addition message from zebra. */ static int static_ifp_create(struct interface *ifp) { static_ifindex_update(ifp, true); |