tags 453861 + patch
thanks

Here is a patch to solve this issue.  I believ it solve all of it.  I
grepped for == to locate all of them.

diff -Nru /tmp/z3amc7eU0N/acpi-support-0.103/asus-wireless.sh 
/tmp/ZWQMvzO3ZY/acpi-support-0.103/asus-wireless.sh
--- /tmp/z3amc7eU0N/acpi-support-0.103/asus-wireless.sh 2007-11-11 
12:41:27.000000000 +0100
+++ /tmp/ZWQMvzO3ZY/acpi-support-0.103/asus-wireless.sh 2008-04-29 
22:51:31.000000000 +0200
@@ -5,14 +5,14 @@

 . /usr/share/acpi-support/state-funcs

-if [ "$1" == "" ] ; then
+if [ "$1" = "" ] ; then
        toggleAllWirelessStates;
 elif ( isAnyWirelessPoweredOn ) ; then
-       if [ "$1" == "off"" ] ; then
+       if [ "$1" = "off"" ] ; then
                toggleAllWirelessStates;
        fi
 else
-       if [ "$1" == "on"" ] ; then
+       if [ "$1" = "on"" ] ; then
                toggleAllWirelessStates;
        fi
 fi



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to