aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-10-09 12:56:19 +0000
committerMichael Mann <mmann78@netscape.net>2013-10-09 12:56:19 +0000
commit9ccefb0ecd8cc95a24bed1223f70772444cd2a86 (patch)
tree7704b8b689cd40c12f88815bba25d54eb1b48179 /epan/packet.c
parenta56818ad870811a3b5c7ad2197eeff35b860bd2c (diff)
Prefix all "Wireshark application specific" display filters with a "_ws." to distinguish them from dissector filters.
This was committed now to get it into the 1.11 release so users can start getting used to the changed filter names. svn path=/trunk/; revision=52462
Diffstat (limited to 'epan/packet.c')
-rw-r--r--epan/packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet.c b/epan/packet.c
index 10a7a29106..b0d81f5505 100644
--- a/epan/packet.c
+++ b/epan/packet.c
@@ -129,7 +129,7 @@ packet_cache_proto_handles(void)
data_handle = find_dissector("data");
g_assert(data_handle != NULL);
- proto_malformed = proto_get_id_by_filter_name("malformed");
+ proto_malformed = proto_get_id_by_filter_name("_ws.malformed");
g_assert(proto_malformed != -1);
}