diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-07-30 13:52:40 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-07-30 13:52:40 -0700 |
commit | 7a1b906ca77f83c2e1956bdc04a1e822239465ea (patch) | |
tree | 3684e026c40660e759fa6beb244f029996420598 | |
parent | e2ee36ac9ef274d40b99967320bd3169c36479f0 (diff) |
Missed a return value check in previous commit
Whoopsie
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | netfs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ case "$1" in rc=$? /bin/umount -a -t nfs,nfs4,smbfs,codafs,ncpfs,cifs,shfs,glusterfs,fuse,fuseblk,fuse.glusterfs rc=$(($rc+$?)) - if [ $? -gt 0 ]; then + if [ $rc -gt 0 ]; then stat_fail else rm_daemon netfs |