aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-xot.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-10-13 19:56:52 +0000
committerBill Meier <wmeier@newsguy.com>2013-10-13 19:56:52 +0000
commit2ac134b3c5bbc4020fd64b878db984f526b432cb (patch)
treeb1e8da19850152341ebe466ee3abe9689279d938 /epan/dissectors/packet-xot.c
parent59277781ffca44a2cccb5e935ce3737aabbf4da6 (diff)
whitespace fixes; mostly: remove trailing blanks
svn path=/trunk/; revision=52591
Diffstat (limited to 'epan/dissectors/packet-xot.c')
-rw-r--r--epan/dissectors/packet-xot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-xot.c b/epan/dissectors/packet-xot.c
index 3a79e4e30e..78ecb741be 100644
--- a/epan/dissectors/packet-xot.c
+++ b/epan/dissectors/packet-xot.c
@@ -158,7 +158,7 @@ static guint get_xot_pdu_len_mult(packet_info *pinfo _U_, tvbuff_t *tvb, int off
/* If this is the first packet and it is not data, no sequence needed */
if (offset == offset_before && !PACKET_IS_DATA(pkt_type)) {
- return offset_next-offset_before;
+ return offset_next-offset_before;
}
/* Check for data, there can be X25 control packets in the X25 data */
@@ -311,14 +311,14 @@ static int dissect_xot_tcp_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *t
if (!x25_desegment || !xot_desegment){
tcp_dissect_pdus(tvb, pinfo, tree, xot_desegment,
XOT_HEADER_LENGTH,
- get_xot_pdu_len,
+ get_xot_pdu_len,
dissect_xot_pdu);
len=get_xot_pdu_len(pinfo, tvb, 0);
} else {
/* Use length version that "peeks" into X25, possibly several XOT packets */
tcp_dissect_pdus(tvb, pinfo, tree, xot_desegment,
XOT_HEADER_LENGTH,
- get_xot_pdu_len_mult,
+ get_xot_pdu_len_mult,
dissect_xot_mult);
len=get_xot_pdu_len_mult(pinfo, tvb, 0);
}