diff options
author | Martin Szulecki | 2013-11-19 22:41:40 +0100 |
---|---|---|
committer | Martin Szulecki | 2013-11-19 22:41:40 +0100 |
commit | 92f0d8047fc5870eb580d71b74c6a9d3fc22f285 (patch) | |
tree | 4b81bbcdb68d079ebfb69ffb1bec17ea704f2865 | |
parent | db504297744baf2c3d46f2e80d5461fda6b1f17f (diff) | |
download | idevicerestore-92f0d8047fc5870eb580d71b74c6a9d3fc22f285.tar.gz idevicerestore-92f0d8047fc5870eb580d71b74c6a9d3fc22f285.tar.bz2 |
tss: Fix comment around skipping of OS and Diags components
-rw-r--r-- | src/tss.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -318,8 +318,8 @@ int tss_request_add_ap_tags_from_manifest(plist_t request, plist_t build_identit continue; } - /* FIXME: populated if ApSupportsImg4 */ - if ((strcmp(key, "OS") == 0) || (strcmp(key, "Diags") == 0)) { + /* FIXME: only used with diagnostics firmware */ + if ((strcmp(key, "Diags") == 0) || (strcmp(key, "OS") == 0)) { free(key); continue; } |