summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2012-07-26 15:05:12 +0200
committerGravatar Nikias Bassen2012-07-26 15:05:12 +0200
commitcd342d6d80171c0f93008cd5ae62ecab2e1a7910 (patch)
tree3d82fda18642fd7b5cd3f2503a9a94b086830952
parent53aa1dd471010f440f6fae050d154e07d0af1003 (diff)
downloadidevicerestore-cd342d6d80171c0f93008cd5ae62ecab2e1a7910.tar.gz
idevicerestore-cd342d6d80171c0f93008cd5ae62ecab2e1a7910.tar.bz2
restore: change UUID to UDID in error message
-rw-r--r--src/restore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/restore.c b/src/restore.c
index db102e4..11b3a8c 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -117,12 +117,12 @@ static int restore_idevice_new(struct idevicerestore_client_t* client, idevice_t
}
device_error = idevice_new(&dev, devices[j]);
if (device_error != IDEVICE_E_SUCCESS) {
- error("ERROR: %s: can't open device with UUID %s", __func__, devices[j]);
+ error("ERROR: %s: can't open device with UDID %s", __func__, devices[j]);
continue;
}
if (restored_client_new(dev, &restore, "idevicerestore") != RESTORE_E_SUCCESS) {
- error("ERROR: %s: can't connect to restored on device with UUID %s", __func__, devices[j]);
+ error("ERROR: %s: can't connect to restored on device with UDID %s", __func__, devices[j]);
continue;
}