diff options
author | Martin Szulecki | 2011-04-26 14:33:12 +0200 |
---|---|---|
committer | Martin Szulecki | 2011-04-26 14:33:12 +0200 |
commit | d81d4ccfd3c61a628cbda4aa64e2a8fdb55e140d (patch) | |
tree | 390d166e7f494e48ea61c312a1f6014177abc9c6 | |
parent | 5faa1a4d052b41a7d98fc0e6c94f992721d914a2 (diff) | |
download | libimobiledevice-d81d4ccfd3c61a628cbda4aa64e2a8fdb55e140d.tar.gz libimobiledevice-d81d4ccfd3c61a628cbda4aa64e2a8fdb55e140d.tar.bz2 |
idevicebackup4: Improve error message text if user aborts backup on the device
-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); } } |