aboutsummaryrefslogtreecommitdiffstats
path: root/capture-wpcap.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2012-01-30 00:44:11 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2012-01-30 00:44:11 +0000
commit681936dd2eed3200f1297fdc251e95ec5f5e5744 (patch)
treec9bf3e9a60cf8e43e67dec249566493e631f435f /capture-wpcap.c
parent3e636994d747640ce052f578b116e09b60d670c1 (diff)
Fix QtShark compile error.
(Quoting can be tricky ...) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40766 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture-wpcap.c')
-rw-r--r--capture-wpcap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/capture-wpcap.c b/capture-wpcap.c
index 26a7ca169b..876cd980d6 100644
--- a/capture-wpcap.c
+++ b/capture-wpcap.c
@@ -32,6 +32,8 @@
#include <glib.h>
#include <gmodule.h>
+#include <epan/strutil.h>
+
#include "capture_ifinfo.h"
#include "capture-pcap-util.h"
#include "capture-pcap-util-int.h"
@@ -903,7 +905,7 @@ cant_get_if_list_error_message(const char *err_str)
void
get_compiled_pcap_version(GString *str)
{
- g_string_append(str, "with WinPcap (" PCAP_VERSION ")");
+ g_string_append(str, "with WinPcap (" STRINGIFY(PCAP_VERSION) ")");
}
/*