--- /etc/rc.dist Wed Jan 5 16:09:07 2000 +++ /etc/rc Wed Jan 5 16:20:36 2000 @@ -356,7 +356,7 @@ # Unmodified nvi editor backup files either have the # execute bit set or are zero length. Delete them. if test -x $i -o ! -s $i; then - rm -f $i + rm -f "$i" fi done @@ -375,9 +375,9 @@ # Else send mail to the user. recfile=`awk '/^X-vi-recover-path:/{print $2}' < $i` if test -n "$recfile" -a -s "$recfile"; then - sendmail -t < $i + sendmail -t < "$i" else - rm -f $i + rm -f "$i" fi done fi