diff options
Diffstat (limited to 'ui/tap_export_pdu.c')
-rw-r--r-- | ui/tap_export_pdu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tap_export_pdu.c b/ui/tap_export_pdu.c index d12d5f4b0c..a981b7e37c 100644 --- a/ui/tap_export_pdu.c +++ b/ui/tap_export_pdu.c @@ -27,9 +27,9 @@ #include "globals.h" #include "wtap.h" #include "pcap-encap.h" -#include "version_info.h" #include "wsutil/tempfile.h" #include "wsutil/os_version_info.h" +#include "wsutil/ws_version_info.h" #include <epan/tap.h> #include <epan/exported_pdu.h> @@ -102,7 +102,7 @@ exp_pdu_file_open(exp_pdu_t *exp_pdu_tap_data) os_info_str = g_string_new(""); get_os_version_info(os_info_str); - g_snprintf(appname, sizeof(appname), "Wireshark " VERSION "%s", wireshark_gitversion); + g_snprintf(appname, sizeof(appname), "Wireshark %s", get_ws_vcs_version_info()); shb_hdr = g_new(wtapng_section_t,1); shb_hdr->section_length = -1; |