From: Gioacchino Mazzurco Date: Tue, 10 Jun 2014 17:29:14 +0000 (+0200) Subject: Reorder alfabetically device type matching as they are growing in number X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=6e70adc5eca0dc1cc52a5838e86d937efdf8a38c;hp=59217785704fca27d2c7a19e279d27c384a452cd Reorder alfabetically device type matching as they are growing in number Signed-off-by: Gioacchino Mazzurco --- 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)