diff options
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 |