aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sccp.c
diff options
context:
space:
mode:
authordimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-27 22:57:50 +0000
committerdimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-27 22:57:50 +0000
commit7d3f9f3c5483cd059f7880a5c37dc023ada29c52 (patch)
tree1735a55435544fcafa2d86bae3f28aabee909421 /epan/dissectors/packet-sccp.c
parent7b6687833c0a68e9fa524df75bfbd41816178efb (diff)
Expert info when E.212 MCC/MNC contain non-decimal digits
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31102 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sccp.c')
-rw-r--r--epan/dissectors/packet-sccp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-sccp.c b/epan/dissectors/packet-sccp.c
index bb534d61db..6c4592626a 100644
--- a/epan/dissectors/packet-sccp.c
+++ b/epan/dissectors/packet-sccp.c
@@ -1090,7 +1090,7 @@ dissect_sccp_gt_address_information(tvbuff_t *tvb, proto_tree *tree,
}
static void
-dissect_sccp_global_title(tvbuff_t *tvb, proto_tree *tree, guint length,
+dissect_sccp_global_title(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint length,
guint8 gti, gboolean called)
{
proto_item *gt_item = 0;
@@ -1194,7 +1194,7 @@ dissect_sccp_global_title(tvbuff_t *tvb, proto_tree *tree, guint length,
case GT_NP_LAND_MOBILE:
digits_tree = proto_item_add_subtree(digits_item,
ett_sccp_digits);
- dissect_e212_mcc_mnc(signals_tvb, digits_tree, 0);
+ dissect_e212_mcc_mnc(signals_tvb, pinfo, digits_tree, 0);
break;
default:
break;
@@ -1411,7 +1411,7 @@ dissect_sccp_called_calling_param(tvbuff_t *tvb, proto_tree *tree, packet_info *
gt_tvb = tvb_new_subset(tvb, offset, (length - offset),
(length - offset));
- dissect_sccp_global_title(gt_tvb, call_tree, (length - offset), gti,
+ dissect_sccp_global_title(gt_tvb, pinfo, call_tree, (length - offset), gti,
called);
}
@@ -1472,7 +1472,7 @@ dissect_sccp_called_calling_param(tvbuff_t *tvb, proto_tree *tree, packet_info *
return;
gt_tvb = tvb_new_subset(tvb, offset, (length - offset),
(length - offset));
- dissect_sccp_global_title(gt_tvb, call_tree, (length - offset), gti,
+ dissect_sccp_global_title(gt_tvb, pinfo, call_tree, (length - offset), gti,
called);
}