From: Christian Brauner Date: Wed, 9 Dec 2020 08:53:57 +0000 (+0100) Subject: confile_utils: cleanup lxc_ipvlan_mode X-Git-Tag: lxc-5.0.0~330^2~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdc5e0176af4542f172e9f6ffd4c467692d1dae7;p=thirdparty%2Flxc.git confile_utils: cleanup lxc_ipvlan_mode Signed-off-by: Christian Brauner --- diff --git a/src/lxc/confile_utils.c b/src/lxc/confile_utils.c index 59620b8dc..ce6321014 100644 --- a/src/lxc/confile_utils.c +++ b/src/lxc/confile_utils.c @@ -559,9 +559,9 @@ static struct lxc_ipvlan_mode { char *name; int mode; } ipvlan_mode[] = { - { "l3", IPVLAN_MODE_L3 }, - { "l3s", IPVLAN_MODE_L3S }, - { "l2", IPVLAN_MODE_L2 }, + { "l3", IPVLAN_MODE_L3 }, + { "l3s", IPVLAN_MODE_L3S }, + { "l2", IPVLAN_MODE_L2 }, }; int lxc_ipvlan_mode_to_flag(int *mode, const char *value)