summaryrefslogtreecommitdiff
path: root/ui/util.c
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-03-22 03:24:35 +0000
committerPeter Wu <peter@lekensteyn.nl>2016-04-08 20:49:22 +0000
commitc5782e0d412c38a7338a3f8862dee0c248aab227 (patch)
tree6d61f80782cfb65fd19ec05f31cb2eb4f192413e /ui/util.c
parent57b2a84f3d900eb0b98157095c6aac07cec54fd9 (diff)
downloadwireshark-c5782e0d412c38a7338a3f8862dee0c248aab227.tar.gz
Replace and remove host_ip_af() function
Change-Id: I932c156cbc6883d1d63bf0457fd62cfb67c3340e Reviewed-on: https://code.wireshark.org/review/14750 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'ui/util.c')
-rw-r--r--ui/util.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/ui/util.c b/ui/util.c
index 29a6811321..907f778f39 100644
--- a/ui/util.c
+++ b/ui/util.c
@@ -169,9 +169,9 @@ const gchar *get_conn_cfilter(void) {
if (g_strv_length(tokens) == 4) {
remip = sanitize_filter_ip(tokens[0]);
locip = sanitize_filter_ip(tokens[2]);
- g_string_printf(filter_str, "not (tcp port %s and %s host %s "
- "and tcp port %s and %s host %s)", tokens[1], host_ip_af(remip), remip,
- tokens[3], host_ip_af(locip), locip);
+ g_string_printf(filter_str, "not (tcp port %s and host %s "
+ "and tcp port %s and host %s)", tokens[1], remip,
+ tokens[3], locip);
g_free(remip);
g_free(locip);
}
@@ -180,8 +180,8 @@ const gchar *get_conn_cfilter(void) {
tokens = g_strsplit(env, " ", 3);
if (g_strv_length(tokens) == 3) {
remip = sanitize_filter_ip(tokens[2]);
- g_string_printf(filter_str, "not (tcp port %s and %s host %s "
- "and tcp port %s)", tokens[1], host_ip_af(remip), tokens[0], remip);
+ g_string_printf(filter_str, "not (tcp port %s and host %s "
+ "and tcp port %s)", tokens[1], tokens[0], remip);
g_free(remip);
}
g_strfreev(tokens);
@@ -193,7 +193,7 @@ const gchar *get_conn_cfilter(void) {
return "";
}
remip = sanitize_filter_ip(env);
- g_string_printf(filter_str, "not %s host %s", host_ip_af(remip), remip);
+ g_string_printf(filter_str, "not host %s", remip);
g_free(remip);
} else if ((env = getenv("DISPLAY")) != NULL) {
/*
@@ -322,8 +322,7 @@ const gchar *get_conn_cfilter(void) {
}
}
- g_string_printf(filter_str, "not %s host %s",
- host_ip_af(phostname), phostname);
+ g_string_printf(filter_str, "not host %s", phostname);
g_free(phostname);
#ifdef _WIN32
} else if (GetSystemMetrics(SM_REMOTESESSION)) {