summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2017-04-27 14:32:49 +0200
committerGravatar Nikias Bassen2017-04-27 14:32:49 +0200
commita5b2266b4e9c2112f85f94aa1d45440007922e08 (patch)
tree871533b959289ab25f0ebd7d06aef7885bddb061
parentb89e4823ef9528936072f5f195d7fdab9e1f838b (diff)
downloadlibimobiledevice-a5b2266b4e9c2112f85f94aa1d45440007922e08.tar.gz
libimobiledevice-a5b2266b4e9c2112f85f94aa1d45440007922e08.tar.bz2
cython: Fix build error after error constant rename
-rw-r--r--cython/lockdown.pxi4
1 files changed, 2 insertions, 2 deletions
diff --git a/cython/lockdown.pxi b/cython/lockdown.pxi
index c8d511e..f249049 100644
--- a/cython/lockdown.pxi
+++ b/cython/lockdown.pxi
@@ -7,7 +7,7 @@ cdef extern from "libimobiledevice/lockdown.h":
LOCKDOWN_E_PAIRING_FAILED
LOCKDOWN_E_SSL_ERROR
LOCKDOWN_E_DICT_ERROR
- LOCKDOWN_E_NOT_ENOUGH_DATA
+ LOCKDOWN_E_RECEIVE_TIMEOUT
LOCKDOWN_E_SET_VALUE_PROHIBITED
LOCKDOWN_E_GET_VALUE_PROHIBITED
LOCKDOWN_E_MUX_ERROR
@@ -78,7 +78,7 @@ cdef class LockdownError(BaseError):
LOCKDOWN_E_PAIRING_FAILED: "Pairing failed",
LOCKDOWN_E_SSL_ERROR: "SSL error",
LOCKDOWN_E_DICT_ERROR: "Dictionary error",
- LOCKDOWN_E_NOT_ENOUGH_DATA: "Not enough data",
+ LOCKDOWN_E_RECEIVE_TIMEOUT: "Receive timeout",
LOCKDOWN_E_MUX_ERROR: "Mux Protocol Error",
LOCKDOWN_E_NO_RUNNING_SESSION: "No running session",
LOCKDOWN_E_INVALID_RESPONSE: "Invalid response",