From cd342d6d80171c0f93008cd5ae62ecab2e1a7910 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 26 Jul 2012 15:05:12 +0200 Subject: restore: change UUID to UDID in error message --- src/restore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/restore.c') 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; } -- cgit v1.1-32-gdbae