summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2011-04-28 00:43:56 +0200
committerGravatar Martin Szulecki2011-04-28 00:43:56 +0200
commit2f90d1d1c347b547219a5da5eff2557b07ce5323 (patch)
tree26382c58277adae6ee4eebbe4b8ecf2d05a7cb83
parent80e0d719c07ea11aeca858dfc3d9468fc63fc92b (diff)
downloadlibimobiledevice-2f90d1d1c347b547219a5da5eff2557b07ce5323.tar.gz
libimobiledevice-2f90d1d1c347b547219a5da5eff2557b07ce5323.tar.bz2
idevicebackup2: Improve message for sending and receiving files
-rw-r--r--tools/idevicebackup2.c4
1 files 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 {