"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
This commit is contained in:
Anders Broman 2012-10-11 08:12:41 +00:00
parent 38f3198b2b
commit f6914a05af
1 changed files with 2 additions and 2 deletions

View File

@ -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 }},
};