diff options
author | Martin Szulecki | 2012-07-17 17:54:48 +0200 |
---|---|---|
committer | Nikias Bassen | 2012-07-17 17:54:48 +0200 |
commit | 0a75e4699866eb8c1d30cf955b01462f2a180334 (patch) | |
tree | c216cd2c593a62c9dcd68cb639de7adb4c130ebb | |
parent | 16820272fec85345ec00a7a150e02dc245b6ddf9 (diff) | |
download | idevicerestore-0a75e4699866eb8c1d30cf955b01462f2a180334.tar.gz idevicerestore-0a75e4699866eb8c1d30cf955b01462f2a180334.tar.bz2 |
recovery: Increase recovery connection attempts to 20
-rw-r--r-- | src/recovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recovery.c b/src/recovery.c index 40aef27..5b24e31 100644 --- a/src/recovery.c +++ b/src/recovery.c @@ -55,7 +55,7 @@ void recovery_client_free(struct idevicerestore_client_t* client) { int recovery_client_new(struct idevicerestore_client_t* client) { int i = 0; - int attempts = 10; + int attempts = 20; irecv_client_t recovery = NULL; irecv_error_t recovery_error = IRECV_E_UNKNOWN_ERROR; |