aboutsummaryrefslogtreecommitdiff
path: root/hbak/src
diff options
context:
space:
mode:
authorHimbeer <himbeerserverde@gmail.com>2024-02-19 14:54:28 +0100
committerHimbeer <himbeerserverde@gmail.com>2024-02-19 14:54:28 +0100
commitab8993f322cfad6cb718faf2a6d63f20ad991a99 (patch)
treec46e487e7e08ad5c892396194b1247c8b3396a05 /hbak/src
parentd5bfd77859ed42b0bb99616035807cd40194865f (diff)
make client-side auth success message more correct
Diffstat (limited to 'hbak/src')
-rw-r--r--hbak/src/main.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/hbak/src/main.rs b/hbak/src/main.rs
index 27d3cad..ea231fe 100644
--- a/hbak/src/main.rs
+++ b/hbak/src/main.rs
@@ -371,7 +371,10 @@ fn sync(
&local_node.config().passphrase,
)?;
- eprintln!("Authentication to {} successful", remote_node.address);
+ eprintln!(
+ "Authentication to and of {} successful",
+ remote_node.address
+ );
let mut local_sync_info = SyncInfo {
volumes: HashMap::new(),
@@ -477,7 +480,7 @@ fn restore(
&local_node.config().passphrase,
)?;
- eprintln!("Authentication to {} successful", address);
+ eprintln!("Authentication to and of {} successful", address);
let mut local_sync_info = SyncInfo {
volumes: HashMap::new(),