Skip to content

Commit dcaf16e

Browse files
authored
Merge pull request #19226 from FRRouting/mergify/bp/stable/10.4/pr-19225
zebra: fix typo in ip "forwarding" cli (backport #19225)
2 parents 52ee8b3 + 05f6bb9 commit dcaf16e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

zebra/zebra_cli.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ static void zebra_ip_forwarding_cli_write(struct vty *vty, const struct lyd_node
6464
bool enabled = yang_dnode_get_bool(dnode, NULL);
6565

6666
if (!enabled)
67-
vty_out(vty, "no ip forwrding\n");
67+
vty_out(vty, "no ip forwarding\n");
6868
else if (show_defaults)
69-
vty_out(vty, "ip forwrding\n");
69+
vty_out(vty, "ip forwarding\n");
7070
}
7171

7272
DEFPY_YANG (ipv6_forwarding,
@@ -88,9 +88,9 @@ static void zebra_ipv6_forwarding_cli_write(struct vty *vty, const struct lyd_no
8888
bool enabled = yang_dnode_get_bool(dnode, NULL);
8989

9090
if (!enabled)
91-
vty_out(vty, "no ipv6 forwrding\n");
91+
vty_out(vty, "no ipv6 forwarding\n");
9292
else if (show_defaults)
93-
vty_out(vty, "ipv6 forwrding\n");
93+
vty_out(vty, "ipv6 forwarding\n");
9494
}
9595

9696
DEFPY_YANG (zebra_route_map_timer,

0 commit comments

Comments
 (0)