aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-01-19 08:11:23 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-01-19 08:11:23 +0000
commit6ff81c8f6aea6510efd75b0def0e81ab2599c8f8 (patch)
tree5e55ff91d9c26a5c63245140b198e5f42f9e09b6 /epan
parent457973249478e3d40bba130c21eeba20f6e9d3b3 (diff)
Change group for "Unknown bit(s)" expert info to Undecoded.
svn path=/trunk/; revision=31563
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ber.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ber.c b/epan/dissectors/packet-ber.c
index 3dae346513..71483485eb 100644
--- a/epan/dissectors/packet-ber.c
+++ b/epan/dissectors/packet-ber.c
@@ -4090,7 +4090,7 @@ int dissect_ber_constrained_bitstring(gboolean implicit_tag, asn1_ctx_t *actx, p
for (byteno = 0; byteno < len; byteno++) {
if (bitstring[byteno]) {
- expert_add_info_format(actx->pinfo, item, PI_PROTOCOL, PI_WARN,
+ expert_add_info_format(actx->pinfo, item, PI_UNDECODED, PI_WARN,
"Unknown bit(s): 0x%s", bytes_to_str(bitstring, len));
break;
}