sshdump: fix detection of custom version in Windows

This commit is contained in:
Pascal Quantin 2020-12-09 21:55:56 +01:00 committed by Wireshark GitLab Utility
parent 1bab2f7ee0
commit 10377c4d92
1 changed files with 4 additions and 0 deletions

View File

@ -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"