aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iec104.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-07-06 14:09:52 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-07-06 14:09:52 +0000
commit720327f14d475e1572687e06e94f170fcc73e803 (patch)
tree7804fa244f266190694044499fc7864a6628d0d5 /epan/dissectors/packet-iec104.c
parentb6eebe747437085a93dab4d0d673345502524101 (diff)
Small editorial changes.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28953 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-iec104.c')
-rw-r--r--epan/dissectors/packet-iec104.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/epan/dissectors/packet-iec104.c b/epan/dissectors/packet-iec104.c
index b53bac1358..cd2d103f1f 100644
--- a/epan/dissectors/packet-iec104.c
+++ b/epan/dissectors/packet-iec104.c
@@ -618,7 +618,9 @@ static void dissect_iec104apci(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
if(Brossa == TcpLen) return;
/* Don't call ASDU dissector if it was called before */
- if(apcih->Type == I_TYPE && (!check_col(pinfo->cinfo, COL_INFO))) call_dissector(iec104asdu_handle, tvb_new_subset(tvb, Off+ APCI_LEN, -1, apcih->ApduLen- APCI_LEN), pinfo, tree);
+ if(apcih->Type == I_TYPE && (!check_col(pinfo->cinfo, COL_INFO))){
+ call_dissector(iec104asdu_handle, tvb_new_subset(tvb, Off+ APCI_LEN, -1, apcih->ApduLen- APCI_LEN), pinfo, tree);
+ }
/* 'Packet Details': TREE */
trHead = proto_item_add_subtree(it104, ett_apci);
@@ -639,7 +641,9 @@ static void dissect_iec104apci(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
static void dissect_iec104reas(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
- /* 5th parameter = 6 = minimum bytes received to calculate the length. (Not 2 in order to find more APCIs in case of 'noisy' bytes between the APCIs) */
+ /* 5th parameter = 6 = minimum bytes received to calculate the length.
+ * (Not 2 in order to find more APCIs in case of 'noisy' bytes between the APCIs)
+ */
tcp_dissect_pdus(tvb, pinfo, tree, TRUE, APCI_LEN,
get_iec104apdu_len, dissect_iec104apci);
}
@@ -749,7 +753,7 @@ proto_reg_handoff_iec104(void)
{
dissector_handle_t iec104apci_handle;
- iec104apci_handle = create_dissector_handle(dissect_iec104reas, proto_iec104apci);
+ iec104apci_handle = create_dissector_handle(dissect_iec104reas, proto_iec104apci);
iec104asdu_handle = create_dissector_handle(dissect_iec104asdu, proto_iec104asdu);
dissector_add("tcp.port", iec104port, iec104apci_handle);