scripts: fix wrong usage of '==' operator
[openwrt/svn-archive/archive.git] / package / network / config / qos-scripts / files / usr / bin / qos-stat
index 78d163888b3e9410e72899221a159b8453e0c226..cbbf8e8de89c6818bea1d9c098d03985a5602dd2 100755 (executable)
@@ -11,12 +11,12 @@ get_ifname() {
 
        scan_interfaces
        config_get cfgt "$interface" TYPE
-       [ "$cfgt" == "interface" ] && config_get "$interface" ifname
+       [ "$cfgt" = "interface" ] && config_get "$interface" ifname
 }
 
 config_cb() {
        config_get TYPE "$CONFIG_SECTION" TYPE
-       [ "interface" == "$TYPE" ] && {
+       [ "interface" = "$TYPE" ] && {
                config_get device "$CONFIG_SECTION" ifname
                [ -z "$device" ] && device="$(get_ifname ${CONFIG_SECTION})"
                config_set "$CONFIG_SECTION" device "$device"