1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-14 05:57:40 +03:00

network: fix typo

I was worried about backwards compat, but this was only added
in af94bb24b59a2abc8d9f3ba6b5ba168372c9237c, and can be changed
with impunity.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-04-16 18:00:10 +02:00
parent a942084057
commit f1e318f690

View File

@ -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);