From 6e70adc5eca0dc1cc52a5838e86d937efdf8a38c Mon Sep 17 00:00:00 2001 From: Gioacchino Mazzurco Date: Tue, 10 Jun 2014 19:29:14 +0200 Subject: [PATCH] Reorder alfabetically device type matching as they are growing in number Signed-off-by: Gioacchino Mazzurco --- config.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config.c b/config.c index 515e646..7720acf 100644 --- a/config.c +++ b/config.c @@ -167,16 +167,16 @@ config_init_devices(void) type = uci_lookup_option_string(uci_ctx, s, "type"); if (type) { - if (!strcmp(type, "bridge")) + if (!strcmp(type, "8021ad")) + devtype = &vlandev_device_type; + else if (!strcmp(type, "8021q")) + devtype = &vlandev_device_type; + else if (!strcmp(type, "bridge")) devtype = &bridge_device_type; - else if (!strcmp(type, "tunnel")) - devtype = &tunnel_device_type; else if (!strcmp(type, "macvlan")) devtype = &macvlan_device_type; - else if (!strcmp(type, "8021ad")) - devtype = &vlandev_device_type; - else if (!strcmp(type, "8021q")) - devtype = &vlandev_device_type; + else if (!strcmp(type, "tunnel")) + devtype = &tunnel_device_type; } if (!devtype) -- 2.11.0