From 0c7b0a6f79c8fa5d16d6f5da064b11d2e1f84920 Mon Sep 17 00:00:00 2001 From: BALATON Zoltan Date: Wed, 1 Oct 2014 23:30:01 +0200 Subject: tss: handle status code 69 The corresponding message was also "This device isn't eligible for the requested build" with this status code. --- src/tss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tss.c b/src/tss.c index 99c4538..4075eb4 100644 --- a/src/tss.c +++ b/src/tss.c @@ -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) { -- cgit v1.1-32-gdbae