diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/idevicebackup4.c | 4 |
1 files 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); } } |