diff options
author | intrigeri <intrigeri@boum.org> | 2005-11-29 10:08:30 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2005-11-29 10:08:30 +0000 |
commit | 41f3fddfe2734b78e26dd5ca4ae1f0bd5c344119 (patch) | |
tree | 85656a5d78c621854d78be9dc0432022f0e142b6 /handlers | |
parent | 122f2c95be8eca8c8a09b418b9f0ecef8afb2bc5 (diff) | |
download | backupninja-41f3fddfe2734b78e26dd5ca4ae1f0bd5c344119.tar.gz backupninja-41f3fddfe2734b78e26dd5ca4ae1f0bd5c344119.tar.bz2 |
r3554@krups: intrigeri | 2005-11-15 04:09:01 +0100
rdiff.helper: (re)rename do_rdiff_conn function to do_rdiff_ssh_con, since the previous rename was not the good one.
Diffstat (limited to 'handlers')
-rw-r--r-- | handlers/rdiff.helper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/handlers/rdiff.helper b/handlers/rdiff.helper index b5a0784..68ba8a2 100644 --- a/handlers/rdiff.helper +++ b/handlers/rdiff.helper @@ -62,7 +62,7 @@ do_rdiff_src() { set +o noglob } -do_rdiff_conn() { +do_rdiff_ssh_con() { IFS=$' \t\n' if [ "$_dest_done" = "" ]; then msgBox "rdiff action wizard: error" "You must first configure the destination." @@ -269,7 +269,7 @@ rdiff_main_menu() { case "$result" in "src") do_rdiff_src;; "dest") do_rdiff_dest;; - "conn") do_rdiff_conn;; + "conn") do_rdiff_ssh_con;; "adv") do_rdiff_adv;; "finish") if [[ "$_con_done$_dest_done$_src_done" != "(DONE)(DONE)(DONE)" ]]; then |