diff U3 netfs.orig netfs --- netfs.orig Fri Jun 10 01:33:42 2011 +++ netfs Tue Jun 28 19:47:18 2011 @@ -12,7 +12,7 @@ /bin/mount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,glusterfs,fuse,fuseblk,fuse.glusterfs,davfs rc=$? /bin/mount -a -O _netdev - if ((rc + $? > 0)); then + if (($rc + $? > 0)); then stat_fail else add_daemon netfs @@ -24,7 +24,7 @@ /bin/umount -a -O _netdev rc=$? /bin/umount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,glusterfs,fuse,fuseblk,fuse.glusterfs,davfs - if ((rc + $? > 0)); then + if (($rc + $? > 0)); then stat_fail else rm_daemon netfs