diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-06-01 11:38:04 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-06-02 11:15:37 +0200 |
commit | 40352cf0c1ea8f2fcce3b8a86c80efc259a62c2d (patch) | |
tree | e949dcf89032165a708c0c6bfabc6d2fcdb18590 /src/network | |
parent | basic: set errno in raw_clone() on sparc (diff) | |
download | systemd-40352cf0c1ea8f2fcce3b8a86c80efc259a62c2d.tar.xz systemd-40352cf0c1ea8f2fcce3b8a86c80efc259a62c2d.zip |
netdev: fix parser for VRF.Table=
This effectively reverts f98dd1e70750f09a85d9236ad3621b249ad59629 (#6704).
Fixes #9150.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/netdev/netdev-gperf.gperf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/netdev/netdev-gperf.gperf b/src/network/netdev/netdev-gperf.gperf index c0d4375a99..dfcac9adbf 100644 --- a/src/network/netdev/netdev-gperf.gperf +++ b/src/network/netdev/netdev-gperf.gperf @@ -145,7 +145,7 @@ Bridge.MulticastSnooping, config_parse_tristate, 0, Bridge.VLANFiltering, config_parse_tristate, 0, offsetof(Bridge, vlan_filtering) Bridge.STP, config_parse_tristate, 0, offsetof(Bridge, stp) VRF.TableId, config_parse_uint32, 0, offsetof(Vrf, table) /* deprecated */ -VRF.Table, config_parse_route_table, 0, offsetof(Vrf, table) +VRF.Table, config_parse_uint32, 0, offsetof(Vrf, table) WireGuard.FwMark, config_parse_unsigned, 0, offsetof(Wireguard, fwmark) WireGuard.ListenPort, config_parse_wireguard_listen_port, 0, offsetof(Wireguard, port) WireGuard.PrivateKey, config_parse_wireguard_private_key, 0, 0 |