From 2f90d1d1c347b547219a5da5eff2557b07ce5323 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 28 Apr 2011 00:43:56 +0200 Subject: idevicebackup2: Improve message for sending and receiving files --- tools/idevicebackup2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c index 5ac214e..263a1c1 100644 --- a/tools/idevicebackup2.c +++ b/tools/idevicebackup2.c @@ -576,7 +576,7 @@ static int mb2_handle_send_file(const char *backup_dir, const char *path, plist_ total = fst.st_size; gchar *format_size = g_format_size_for_display(total); - PRINT_VERBOSE(1, "Sending file '%s': (%s)\n", path, format_size); + PRINT_VERBOSE(1, "Sending '%s' (%s)\n", path, format_size); g_free(format_size); if (total == 0) { @@ -733,7 +733,7 @@ static int mb2_handle_receive_files(plist_t message, const char *backup_dir) plist_get_uint_val(node, &backup_total_size); } if (backup_total_size > 0) { - PRINT_VERBOSE(1, "Receiving backup data\n"); + PRINT_VERBOSE(1, "Receiving files\n"); } do { -- cgit v1.1-32-gdbae