From f1e318f690c8e28d62c342f46d2bd03682352f86 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 16 Apr 2020 18:00:10 +0200 Subject: [PATCH] network: fix typo I was worried about backwards compat, but this was only added in af94bb24b59a2abc8d9f3ba6b5ba168372c9237c, and can be changed with impunity. --- src/shared/bridge-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/bridge-util.c b/src/shared/bridge-util.c index 2e45a1bd598..83a94ef104e 100644 --- a/src/shared/bridge-util.c +++ b/src/shared/bridge-util.c @@ -7,7 +7,7 @@ static const char* const bridge_state_table[_NETDEV_BRIDGE_STATE_MAX] = { [NETDEV_BRIDGE_STATE_DISABLED] = "disabled", [NETDEV_BRIDGE_STATE_LISTENING] = "listening", [NETDEV_BRIDGE_STATE_LEARNING] = "learning", - [NETDEV_BRIDGE_STATE_FORWARDING] = "forwading", + [NETDEV_BRIDGE_STATE_FORWARDING] = "forwarding", }; DEFINE_STRING_TABLE_LOOKUP(bridge_state, BridgeState); -- 2.47.3