Update of /cvsroot/radmind/radmind
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1099
Modified Files:
ra.sh
Log Message:
EOF means No.
Index: ra.sh
===================================================================
RCS file: /cvsroot/radmind/radmind/ra.sh,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** ra.sh 7 Nov 2006 16:24:53 -0000 1.32
--- ra.sh 7 Nov 2006 19:09:22 -0000 1.33
***************
*** 63,66 ****
--- 63,69 ----
echo -n "$*" "[Yn] "
read ans
+ if [ $? -ne 0 ]; then
+ return 0
+ fi
if [ -z "$ans" -o X"$ans" = Xy -o X"$ans" = XY -o X"$ans" = Xyes ]; then
return 1
|