From 6c7a2c08a1d9ac5db1a465f66d72360cdf6acd19 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 15 Mar 2018 01:02:26 +0100 Subject: ideviceactivation: Only warn about 'Device Unknown' server response when trying to activate --- tools/ideviceactivation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ideviceactivation.c b/tools/ideviceactivation.c index d50bf98..1db2dc1 100644 --- a/tools/ideviceactivation.c +++ b/tools/ideviceactivation.c @@ -171,7 +171,7 @@ int main(int argc, char *argv[]) } plist_free(p_version); - if (product_version >= 0x0A0200) { + if (op == OP_ACTIVATE && product_version >= 0x0A0200) { /* The activation server will not acknowledge the activation for iOS >= 10.2 anymore. Let's warn the user about this. */ plist_t state = NULL; lockdownd_get_value(lockdown, NULL, "ActivationState", &state); -- cgit v1.1-32-gdbae