aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isup.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-10-11 08:12:41 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-10-11 08:12:41 +0000
commitf6914a05af131d06542b945a07575bd530a35a59 (patch)
tree8f74606211d76de20da84cf948ca5a65a15d68db /epan/dissectors/packet-isup.c
parent38f3198b2bc86a424f6ce9f7c8fb8024af25370b (diff)
"Prepare/Apply a filter" on ISUP CIC should make a filter with decimal CIC number, not hex.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7848 svn path=/trunk/; revision=45463
Diffstat (limited to 'epan/dissectors/packet-isup.c')
-rw-r--r--epan/dissectors/packet-isup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-isup.c b/epan/dissectors/packet-isup.c
index bbc9b223c8..265a2f2938 100644
--- a/epan/dissectors/packet-isup.c
+++ b/epan/dissectors/packet-isup.c
@@ -9994,7 +9994,7 @@ proto_register_isup(void)
static hf_register_info hf[] = {
{ &hf_isup_cic,
{ "CIC", "isup.cic",
- FT_UINT16, BASE_HEX, NULL, 0x0,
+ FT_UINT16, BASE_DEC, NULL, 0x0,
NULL, HFILL }},
{ &hf_isup_message_type,
@@ -11223,7 +11223,7 @@ proto_register_bicc(void)
static hf_register_info hf[] = {
{ &hf_bicc_cic,
{ "Call identification Code (CIC)", "bicc.cic",
- FT_UINT32, BASE_HEX, NULL, 0x0,
+ FT_UINT32, BASE_DEC, NULL, 0x0,
NULL, HFILL }},
};