Skip to content

Commit 598b8c3

Browse files
committed
add openssl version to -V output
1 parent da074c5 commit 598b8c3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/ios_webkit_debug_proxy_main.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
#include <winsock2.h>
3030
#endif
3131

32+
#include <openssl/opensslv.h>
33+
3234
#include "device_listener.h"
3335
#include "hash_table.h"
3436
#include "ios_webkit_debug_proxy.h"
@@ -260,8 +262,9 @@ int iwdpm_configure(iwdpm_t self, int argc, char **argv) {
260262
case 'V':
261263
printf(
262264
"%s\n"
263-
"Built with libimobiledevice v%s, libplist v%s, libusbmuxd v%s\n",
264-
PACKAGE_STRING, LIBIMOBILEDEVICE_VERSION, LIBPLIST_VERSION, LIBUSBMUXD_VERSION);
265+
"Built with libimobiledevice v%s, libplist v%s, libusbmuxd v%s, %s\n",
266+
PACKAGE_STRING, LIBIMOBILEDEVICE_VERSION, LIBPLIST_VERSION,
267+
LIBUSBMUXD_VERSION, OPENSSL_VERSION_TEXT);
265268
ret = -2;
266269
break;
267270
case 'u':

0 commit comments

Comments
 (0)