From: Zbigniew Jędrzejewski-Szmek Date: Thu, 16 Apr 2020 16:00:10 +0000 (+0200) Subject: network: fix typo X-Git-Tag: v246-rc1~573^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15454%2Fhead;p=thirdparty%2Fsystemd.git network: fix typo I was worried about backwards compat, but this was only added in af94bb24b59a2abc8d9f3ba6b5ba168372c9237c, and can be changed with impunity. --- 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);