diff options
| author | 2011-04-26 14:33:12 +0200 | |
|---|---|---|
| committer | 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 { | |||
| 70 | static void notify_cb(const char *notification, void *userdata) | 70 | static void notify_cb(const char *notification, void *userdata) |
| 71 | { | 71 | { |
| 72 | if (!strcmp(notification, NP_SYNC_CANCEL_REQUEST)) { | 72 | if (!strcmp(notification, NP_SYNC_CANCEL_REQUEST)) { |
| 73 | printf("User has aborted on-device\n"); | 73 | printf("User has cancelled the backup process on the device.\n"); |
| 74 | quit_flag++; | 74 | quit_flag++; |
| 75 | } else { | 75 | } else { |
| 76 | printf("unhandled notification '%s' (TODO: implement)\n", notification); | 76 | printf("Unhandled notification '%s' (TODO: implement)\n", notification); |
| 77 | } | 77 | } |
| 78 | } | 78 | } |
| 79 | 79 | ||
