From: Christian Brauner Date: Wed, 9 Dec 2020 08:52:44 +0000 (+0100) Subject: confile_utils: cleanup lxc_macvlan_mode X-Git-Tag: lxc-5.0.0~330^2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=faf7e3ba9ea39e3008200e628601d08b71fa4754;p=thirdparty%2Flxc.git confile_utils: cleanup lxc_macvlan_mode Signed-off-by: Christian Brauner --- diff --git a/src/lxc/confile_utils.c b/src/lxc/confile_utils.c index 31ee22026..156ce829f 100644 --- a/src/lxc/confile_utils.c +++ b/src/lxc/confile_utils.c @@ -524,10 +524,10 @@ static struct lxc_macvlan_mode { char *name; int mode; } macvlan_mode[] = { - { "private", MACVLAN_MODE_PRIVATE }, - { "vepa", MACVLAN_MODE_VEPA }, - { "bridge", MACVLAN_MODE_BRIDGE }, - { "passthru", MACVLAN_MODE_PASSTHRU }, + { "private", MACVLAN_MODE_PRIVATE }, + { "vepa", MACVLAN_MODE_VEPA }, + { "bridge", MACVLAN_MODE_BRIDGE }, + { "passthru", MACVLAN_MODE_PASSTHRU }, }; int lxc_macvlan_mode_to_flag(int *mode, const char *value)