diff options
author | BALATON Zoltan | 2014-10-01 23:30:01 +0200 |
---|---|---|
committer | BALATON Zoltan | 2014-10-21 01:14:26 +0200 |
commit | 0c7b0a6f79c8fa5d16d6f5da064b11d2e1f84920 (patch) | |
tree | 91f26a8243948f7d09573ca15514ecf825998e3b | |
parent | 3e0d3960bade0e11bea7794dc43ce16d50554241 (diff) | |
download | idevicerestore-0c7b0a6f79c8fa5d16d6f5da064b11d2e1f84920.tar.gz idevicerestore-0c7b0a6f79c8fa5d16d6f5da064b11d2e1f84920.tar.bz2 |
tss: handle status code 69
The corresponding message was also "This device isn't eligible for the
requested build" with this status code.
-rw-r--r-- | src/tss.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -718,7 +718,7 @@ plist_t tss_request_send(plist_t tss_request, const char* server_url_string) { } else if (status_code == 49) { // server error (invalid bb data, e.g. BbSNUM?) break; - } else if (status_code == 94) { + } else if (status_code == 69 || status_code == 94) { // This device isn't eligible for the requested build. break; } else if (status_code == 100) { |