r3548@krups: intrigeri | 2005-11-14 20:47:49 +0100
authorintrigeri <intrigeri@boum.org>
Tue, 29 Nov 2005 10:07:28 +0000 (10:07 +0000)
committerintrigeri <intrigeri@boum.org>
Tue, 29 Nov 2005 10:07:28 +0000 (10:07 +0000)
 Fix: the "Cancel" buttons used to have a weird behaviour... at least

ChangeLog
handlers/rdiff.helper

index 34a4b9c97c74e8d34744bf1f421d19386cd8a5e6..5d388545b06f9afcf0b1e9ca72d67afd7f5dafc7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@ version 0.9.2 -- unreleased
        fixed missing makecd.helper in Makefile.am/.in
        rdiff ninjahelper bugfixes:
                used to expand '*' in default source directories
+               the "Cancel" buttons used to have a weird behaviour... at least
 
 version 0.9.1 -- November 05 2005
        rearranged source so that it is relocatable with autotools
index 91d715e73261908fbc523071bbc4538f46685427..f4f376a118c2efe321c9c1995953477a28ca8400 100644 (file)
@@ -11,7 +11,7 @@ do_rdiff_dest() {
     formItem "dest_host" "$rdiff_host"
     formItem "dest_user" "$rdiff_user"
   formDisplay
-  [ $? = 1 ] && return;
+  [ $? = 0 ] || return
 
   IFS=$''
   replyconverted=`echo $REPLY | tr '\n' :`
@@ -40,7 +40,7 @@ do_rdiff_src() {
     formItem include 
     formItem include 
   formDisplay
-  [ $? = 1 ] && return;
+  [ $? = 0 ] || return
 
   unset rdiff_includes
   rdiff_includes=($REPLY)
@@ -52,7 +52,7 @@ do_rdiff_src() {
     formItem exclude 
     formItem exclude 
   formDisplay
-  [ $? = 1 ] && return;
+  [ $? = 0 ] || return
 
   unset rdiff_excludes
   rdiff_excludes=($REPLY)
@@ -75,7 +75,7 @@ do_ssh_con() {
     return
   else
     booleanBox "rdiff action wizard" "This step will create a ssh key for the local root user with no passphrase (if one does not already exist), and attempt to copy root's public ssh key to authorized_keys file of $rdiff_user@$rdiff_host. This will allow the local root to make unattended backups to $rdiff_user@$rdiff_host.\n\n\nAre you sure you want to continue?"
-    [ $? = 1 ] && return
+    [ $? = 0 ] || return
   fi
 
   if [ ! -f /root/.ssh/id_dsa.pub -a ! -f /root/.ssh/id_rsa.pub ]; then
@@ -263,7 +263,7 @@ rdiff_main_menu() {
         dest "$destitem" \
         conn "$conitem" \
         finish "finish and create config file"
-    [ $? = 1 ] && return;
+    [ $? = 0 ] || return
     result="$REPLY"
 
     case "$result" in