From d81d4ccfd3c61a628cbda4aa64e2a8fdb55e140d Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 26 Apr 2011 14:33:12 +0200 Subject: idevicebackup4: Improve error message text if user aborts backup on the device --- tools/idevicebackup4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/idevicebackup4.c b/tools/idevicebackup4.c index 20980ec..490bb21 100644 --- a/tools/idevicebackup4.c +++ b/tools/idevicebackup4.c @@ -70,10 +70,10 @@ enum plist_format_t { static void notify_cb(const char *notification, void *userdata) { if (!strcmp(notification, NP_SYNC_CANCEL_REQUEST)) { - printf("User has aborted on-device\n"); + printf("User has cancelled the backup process on the device.\n"); quit_flag++; } else { - printf("unhandled notification '%s' (TODO: implement)\n", notification); + printf("Unhandled notification '%s' (TODO: implement)\n", notification); } } -- cgit v1.1-32-gdbae