aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lcsap.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-08-19 13:37:59 +0200
committerAnders Broman <a.broman58@gmail.com>2016-08-19 22:30:28 +0000
commit22a4f8e43ff2e5f6bbd4dfec68db67939746a6df (patch)
tree5bb2c2eb1fe7fcf937a11e863b81f75d28a037b6 /epan/dissectors/packet-lcsap.c
parent9bfbea94392195e9079ad78db4f874f491b6144e (diff)
LCSAP: fix indent (use 2 spaces) and modelines
Change-Id: I688c71a94703cecbf62b0e29f1e389551cedbeb9 Reviewed-on: https://code.wireshark.org/review/17171 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-lcsap.c')
-rw-r--r--epan/dissectors/packet-lcsap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-lcsap.c b/epan/dissectors/packet-lcsap.c
index 763d69bb09..d710ea4902 100644
--- a/epan/dissectors/packet-lcsap.c
+++ b/epan/dissectors/packet-lcsap.c
@@ -783,9 +783,9 @@ dissect_lcsap_Civic_Address(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx
subtree = proto_item_add_subtree(actx->created_item, ett_lcsap_civic_address);
if (tvb_strncaseeql(parameter_tvb, 0, "<?xml", 5) == 0) {
- call_dissector(xml_handle, parameter_tvb, actx->pinfo, subtree);
+ call_dissector(xml_handle, parameter_tvb, actx->pinfo, subtree);
}else{
- proto_tree_add_expert(tree, actx->pinfo, &ei_lcsap_civic_data_not_xml, parameter_tvb, 0, -1);
+ proto_tree_add_expert(tree, actx->pinfo, &ei_lcsap_civic_data_not_xml, parameter_tvb, 0, -1);
}
}
@@ -866,7 +866,7 @@ dissect_lcsap_PLMN_ID(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, p
if (!parameter_tvb)
return offset;
- subtree = proto_item_add_subtree(actx->created_item, ett_lcsap_plmnd_id);
+ subtree = proto_item_add_subtree(actx->created_item, ett_lcsap_plmnd_id);
dissect_e212_mcc_mnc(parameter_tvb, actx->pinfo, subtree, 0, E212_NONE, TRUE);