aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-07-04 01:06:07 -0700
committerGuy Harris <guy@alum.mit.edu>2014-07-04 08:06:38 +0000
commitd3a7176ab7c8c2b9ca24caa82df7fba636428b3f (patch)
tree30530a3bfbbcd2bebd5901f22f707664b74b5361
parent17995db2ffb3b7297a35967b3c903da4eada5778 (diff)
Reflect the rename of get_XXX_pcap_version() to get_XXX_caplibs_version().
Change-Id: I55108e39d9d5a3fc5e1e3e0ec0040c08c92cc576 Reviewed-on: https://code.wireshark.org/review/2844 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--caputils/capture-wpcap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/caputils/capture-wpcap.c b/caputils/capture-wpcap.c
index f4f9d61c25..707875d374 100644
--- a/caputils/capture-wpcap.c
+++ b/caputils/capture-wpcap.c
@@ -899,7 +899,7 @@ cant_get_if_list_error_message(const char *err_str)
* Append the version of WinPcap with which we were compiled to a GString.
*/
void
-get_compiled_pcap_version(GString *str)
+get_compiled_caplibs_version(GString *str)
{
g_string_append(str, "with WinPcap (" G_STRINGIFY(WINPCAP_VERSION) ")");
}
@@ -908,7 +908,7 @@ get_compiled_pcap_version(GString *str)
* Append the version of WinPcap with which we we're running to a GString.
*/
void
-get_runtime_pcap_version(GString *str)
+get_runtime_caplibs_version(GString *str)
{
/*
* On Windows, we might have been compiled with WinPcap but
@@ -974,7 +974,7 @@ load_wpcap(void)
* to a GString.
*/
void
-get_compiled_pcap_version(GString *str)
+get_compiled_caplibs_version(GString *str)
{
g_string_append(str, "without WinPcap");
}
@@ -983,7 +983,7 @@ get_compiled_pcap_version(GString *str)
* Don't append anything, as we weren't even compiled to use WinPcap.
*/
void
-get_runtime_pcap_version(GString *str _U_)
+get_runtime_caplibs_version(GString *str _U_)
{
}