diff options
author | Koen Kooi <koen@openembedded.org> | 2007-01-20 19:22:20 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-01-20 19:22:20 +0000 |
commit | 2f09cc3929ee5a4b234f04f3b895b2133d7e846f (patch) | |
tree | 8cd96c24a629c1aaa97699d113436e86f7451295 /packages/prism3-support/files | |
parent | 9442b89d0b606c34e37a291e1ac37fc59b028812 (diff) |
prism3-suppot: fix error in load script
Diffstat (limited to 'packages/prism3-support/files')
-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 |