diff options
author | Nikias Bassen | 2019-11-11 18:08:22 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-11-11 18:10:17 +0100 |
commit | 9af2b12552693a47601347e1eafc1e94132d727e (patch) | |
tree | 8dbde85e4fc217bba6d04894de73318a682e2536 /src | |
parent | 24e06d5247c37a7712d85f032ed3ba74d7a039f8 (diff) | |
download | usbmuxd-9af2b12552693a47601347e1eafc1e94132d727e.tar.gz usbmuxd-9af2b12552693a47601347e1eafc1e94132d727e.tar.bz2 |
Fix compatibility with latest changes in libimobiledevice
Diffstat (limited to 'src')
-rw-r--r-- | src/preflight.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/preflight.c b/src/preflight.c index 86a51cf..c7cfa50 100644 --- a/src/preflight.c +++ b/src/preflight.c @@ -43,14 +43,17 @@ #include "log.h" #ifdef HAVE_LIBIMOBILEDEVICE -enum connection_type { - CONNECTION_USBMUXD = 1 +#ifndef HAVE_ENUM_IDEVICE_CONNECTION_TYPE +enum idevice_connection_type { + CONNECTION_USBMUXD = 1, + CONNECTION_NETWORK }; +#endif struct idevice_private { char *udid; uint32_t mux_id; - enum connection_type conn_type; + enum idevice_connection_type conn_type; void *conn_data; int version; }; |