diff options
author | Justin Patrin <papercrane@gmail.com> | 2007-01-21 20:35:02 +0000 |
---|---|---|
committer | Justin Patrin <papercrane@gmail.com> | 2007-01-21 20:35:02 +0000 |
commit | 725b31633b9944eec4c081f1edad620607ce5c5d (patch) | |
tree | ceb8c4ecb940ba86bb136862dcf0d5f609a0f2df /packages/prism3-support/files/hostap-fw-load | |
parent | a01f1ba3c4046a1beb395acf21008864b1880156 (diff) | |
parent | 4e9277d080e363f4eaa16a0d345c23970a65c4e5 (diff) |
merge of '98112dc48d05ba36117d1045ed0b25ac449d5c7f'
and 'a6d3725bcd7849f3044d01c9bfa2c73dd96dfe89'
Diffstat (limited to 'packages/prism3-support/files/hostap-fw-load')
-rw-r--r-- | packages/prism3-support/files/hostap-fw-load | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/prism3-support/files/hostap-fw-load b/packages/prism3-support/files/hostap-fw-load index 707030c6a7..d0a002bbbb 100644 --- a/packages/prism3-support/files/hostap-fw-load +++ b/packages/prism3-support/files/hostap-fw-load @@ -1,7 +1,7 @@ #!/bin/sh # dont handle non-wireless interfaces -if [ -n `cat /proc/net/wireless|grep $IFACE` ]; then +if [ -n "`cat /proc/net/wireless|grep $IFACE`" ]; then exit 0 fi @@ -23,4 +23,4 @@ fi # lets hope that run-parts obeys the order :D -exit 0
\ No newline at end of file +exit 0 |