Fix non-posix arguments to find.

Thanks, Mark!
This commit is contained in:
pizza 2008-06-24 19:10:11 +00:00
parent b289a5e004
commit edc361a997
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@
* Intersil Corporation as part of PRISM(R) chipset product development.
*
* --------------------------------------------------------------------
- Fix non-posix find arguments in script (Mark Mathews)
0.2.9
- Reduce stack usage in prism2mib_priv (Richard Kennedy)
- WEXT functions should return -EBUSY when the hardware is still

View File

@ -99,7 +99,7 @@ fi
# nsd_mibset
# Debian mod. If there is shared.dpkg-old we get a endless loop
if [ "`ls /etc/wlan/shared.* 2>/dev/null`" ]; then
for i in `find /etc/wlan -name 'shared.*' -and -not -name '*.dpkg*'` ; do
for i in `find /etc/wlan -name 'shared.*' -a ! -name '*.dpkg*'` ; do
. $i
done
else