aboutsummaryrefslogtreecommitdiffstats
path: root/caputils
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-05-11 02:47:58 -0700
committerGuy Harris <guy@alum.mit.edu>2017-05-11 09:49:31 +0000
commit1ecf3b6645924f242b040fe518071ea62fc16e0a (patch)
tree10ce107b44da97dd5ef05be328a4e3a3960dba26 /caputils
parent1be20bc4c241d82c3a8fd5617f22afb784f98b31 (diff)
Note whether we found remote pcap support in libpcap.
Change-Id: Ida20f7164d3132a72fdd6547905cd0af4e451917 Reviewed-on: https://code.wireshark.org/review/21590 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'caputils')
-rw-r--r--caputils/capture-pcap-util-unix.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/caputils/capture-pcap-util-unix.c b/caputils/capture-pcap-util-unix.c
index 9319d55a5d..362317e914 100644
--- a/caputils/capture-pcap-util-unix.c
+++ b/caputils/capture-pcap-util-unix.c
@@ -488,6 +488,12 @@ get_compiled_caplibs_version(GString *str)
* of libpcap with which we were compiled.
*/
g_string_append(str, "with libpcap");
+#ifdef HAVE_PCAP_REMOTE
+ /*
+ * We have remote pcap support in libpcap.
+ */
+ g_string_append(str, " (including remote capture support)");
+#endif
/*
* XXX - these libraries are actually used only by dumpcap,