sshdump: fix detection of custom version in Windows

(cherry picked from commit 10377c4d92)
This commit is contained in:
Pascal Quantin 2020-12-09 20:55:56 +00:00
parent 19cf6c5600
commit 655cb724fd
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"