From f6914a05af131d06542b945a07575bd530a35a59 Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Thu, 11 Oct 2012 08:12:41 +0000 Subject: [PATCH] "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 --- epan/dissectors/packet-isup.c | 4 ++-- 1 file 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 }}, };