diff options
author | Martin Szulecki | 2014-12-25 15:51:23 +0100 |
---|---|---|
committer | Martin Szulecki | 2015-01-12 18:17:40 +0100 |
commit | 89ed91e799fbb6b805122ca2ae381e25a7024d81 (patch) | |
tree | 8fbff60021897dfeb68d8155257a69f1bfd1e35d | |
parent | 48cb70eda460869983a1e47fad34498bae04a79e (diff) | |
download | libimobiledevice-89ed91e799fbb6b805122ca2ae381e25a7024d81.tar.gz libimobiledevice-89ed91e799fbb6b805122ca2ae381e25a7024d81.tar.bz2 |
idevicepair: Fix compilation due to renamed pairing dialog error
-rw-r--r-- | tools/idevicepair.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/idevicepair.c b/tools/idevicepair.c index d02a258..9edfbbe 100644 --- a/tools/idevicepair.c +++ b/tools/idevicepair.c @@ -40,7 +40,7 @@ static void print_error_message(lockdownd_error_t err) case LOCKDOWN_E_INVALID_HOST_ID: printf("ERROR: Device %s is not paired with this host\n", udid); break; - case LOCKDOWN_E_PAIRING_DIALOG_PENDING: + case LOCKDOWN_E_PAIRING_DIALOG_RESPONSE_PENDING: printf("ERROR: Please accept the trust dialog on the screen of device %s, then attempt to pair again.\n", udid); break; case LOCKDOWN_E_USER_DENIED_PAIRING: |