aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-01 20:27:09 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2003-12-01 20:27:09 +0000
commit44924b10569b67a7384ed5dde8ce4d46889eb8fd (patch)
tree4348fbd3286bffd4994be3aeccb9eb86bcc5c48f /util.c
parentbfc603387e4696c746813f7c288103a2dd12fc73 (diff)
Don't automatically fill in a capture filter if CLIENTNAME is set to
"Console". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9130 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'util.c')
-rw-r--r--util.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/util.c b/util.c
index e91120b7ef..1b245c3e3c 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.72 2003/11/18 04:16:28 gerald Exp $
+ * $Id: util.c,v 1.73 2003/12/01 20:27:09 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -706,8 +706,10 @@ gchar *get_conn_cfilter(void) {
return filter_str->str;
}
} else if ((env = getenv("CLIENTNAME")) != NULL) {
- g_string_sprintf(filter_str, "not ip host %s", env);
- return filter_str->str;
+ if (g_strcasecmp("console", env) != 0) {
+ g_string_sprintf(filter_str, "not ip host %s", env);
+ return filter_str->str;
+ }
}
return "";
}