diff options
author | Martin Szulecki | 2012-12-07 20:06:50 +0100 |
---|---|---|
committer | Martin Szulecki | 2012-12-07 20:06:50 +0100 |
commit | a480fe40cfa811af606085d7afbdd1a7ef8040a5 (patch) | |
tree | f066f93762a11eb352929ac5bd99cbddb2322bb6 /src | |
parent | ded478691ff9a14e1f631c8baa3609f7c7c0aae7 (diff) | |
download | idevicerestore-a480fe40cfa811af606085d7afbdd1a7ef8040a5.tar.gz idevicerestore-a480fe40cfa811af606085d7afbdd1a7ef8040a5.tar.bz2 |
dfu: Fix codepath after uploading iBSS due to typo
Diffstat (limited to 'src')
-rw-r--r-- | src/dfu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ int dfu_send_component(struct idevicerestore_client_t* client, plist_t build_ide // FIXME: Did I do this right???? err = irecv_send_buffer(client->dfu->client, data, size, flag); free(path); - if (error != IRECV_E_SUCCESS) { + if (err != IRECV_E_SUCCESS) { error("ERROR: Unable to send %s component: %s\n", component, irecv_strerror(err)); free(data); return -1; |