aboutsummaryrefslogtreecommitdiffstats
path: root/extcap
diff options
context:
space:
mode:
authorPascal Quantin <pascal@wireshark.org>2020-12-09 21:55:56 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2020-12-09 22:02:42 +0000
commit10377c4d92f9ac310f7e7878890e066d17cb37ba (patch)
tree742d134f7d35df83e8ffe405af8fab91bbb129be /extcap
parent1bab2f7ee03617f27e8a1356f3852ca68944e52c (diff)
sshdump: fix detection of custom version in Windows
Diffstat (limited to 'extcap')
-rw-r--r--extcap/sshdump.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/extcap/sshdump.c b/extcap/sshdump.c
index df3b50f86f..94bf6d28e5 100644
--- a/extcap/sshdump.c
+++ b/extcap/sshdump.c
@@ -28,7 +28,11 @@
#include <cli_main.h>
static gchar* sshdump_extcap_interface;
+#ifdef _WIN32
+#define DEFAULT_SSHDUMP_EXTCAP_INTERFACE "sshdump.exe"
+#else
#define DEFAULT_SSHDUMP_EXTCAP_INTERFACE "sshdump"
+#endif
#define SSHDUMP_VERSION_MAJOR "1"
#define SSHDUMP_VERSION_MINOR "0"