summaryrefslogtreecommitdiffstats
path: root/src/dfu.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2015-10-09 03:05:21 +0200
committerGravatar Nikias Bassen2015-10-09 03:05:21 +0200
commit46ead9b3afd6e79fa05a391b94bc929e94101e33 (patch)
treed889975ee080fcd204cc408aa50a17205728c356 /src/dfu.c
parent54d97a24791dfa879dc2c47092e99e234ecb2952 (diff)
downloadidevicerestore-46ead9b3afd6e79fa05a391b94bc929e94101e33.tar.gz
idevicerestore-46ead9b3afd6e79fa05a391b94bc929e94101e33.tar.bz2
Use hardware model instead of product type to identify device correctly
Diffstat (limited to 'src/dfu.c')
-rw-r--r--src/dfu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dfu.c b/src/dfu.c
index 12d27c6..5fbb194 100644
--- a/src/dfu.c
+++ b/src/dfu.c
@@ -3,7 +3,7 @@
* Functions for handling idevices in DFU mode
*
* Copyright (c) 2010-2013 Martin Szulecki. All Rights Reserved.
- * Copyright (c) 2012 Nikias Bassen. All Rights Reserved.
+ * Copyright (c) 2012-2015 Nikias Bassen. All Rights Reserved.
* Copyright (c) 2010 Joshua Hill. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
@@ -113,7 +113,7 @@ int dfu_check_mode(struct idevicerestore_client_t* client, int* mode) {
return 0;
}
-const char* dfu_check_product_type(struct idevicerestore_client_t* client) {
+const char* dfu_check_hardware_model(struct idevicerestore_client_t* client) {
irecv_client_t dfu = NULL;
irecv_error_t dfu_error = IRECV_E_SUCCESS;
irecv_device_t device = NULL;
@@ -131,7 +131,7 @@ const char* dfu_check_product_type(struct idevicerestore_client_t* client) {
irecv_close(dfu);
- return device->product_type;
+ return device->hardware_model;
}
int dfu_send_buffer(struct idevicerestore_client_t* client, unsigned char* buffer, unsigned int size)