diff options
author | Nikias Bassen | 2012-07-26 15:05:12 +0200 |
---|---|---|
committer | Nikias Bassen | 2012-07-26 15:05:12 +0200 |
commit | cd342d6d80171c0f93008cd5ae62ecab2e1a7910 (patch) | |
tree | 3d82fda18642fd7b5cd3f2503a9a94b086830952 | |
parent | 53aa1dd471010f440f6fae050d154e07d0af1003 (diff) | |
download | idevicerestore-cd342d6d80171c0f93008cd5ae62ecab2e1a7910.tar.gz idevicerestore-cd342d6d80171c0f93008cd5ae62ecab2e1a7910.tar.bz2 |
restore: change UUID to UDID in error message
-rw-r--r-- | src/restore.c | 4 |
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; } |