aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-selfm.c
diff options
context:
space:
mode:
authordariusd0 <darius-gitlab@free-range.com.au>2024-02-11 23:14:36 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2024-02-11 23:14:36 +0000
commita313faaa42342cc50a1c6b718d25de3e5204918f (patch)
tree2dc72508d47d1e9c287229356584d9706d609554 /epan/dissectors/packet-selfm.c
parenta201387e326df15dd02babdd9de4266ec796d736 (diff)
Fix two typo'd words.
Diffstat (limited to 'epan/dissectors/packet-selfm.c')
-rw-r--r--epan/dissectors/packet-selfm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-selfm.c b/epan/dissectors/packet-selfm.c
index 7adbf20e86..0a4fcf09ff 100644
--- a/epan/dissectors/packet-selfm.c
+++ b/epan/dissectors/packet-selfm.c
@@ -2681,7 +2681,7 @@ dissect_selfm_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *dat
/* Check if additional data is actually selfm PDU data */
if (tvb_get_guint8(selfm_tvb, selfm_PDU_len) == 0xA5) {
new_selfm_PDU_len = tvb_get_guint8(selfm_tvb, selfm_PDU_len+2);
- /* If we still don't have enough data to accomodate the 2 PDUs... */
+ /* If we still don't have enough data to accommodate the 2 PDUs... */
if (selfm_tvb_len < (selfm_PDU_len + new_selfm_PDU_len)) {
#if 0
fprintf(stderr, "On Packet: %d, continuing to desegment. PDU: %d NewPDU: %d Still need %d bytes.. \n", pinfo->fd->num, selfm_PDU_len, new_selfm_PDU_len, (selfm_PDU_len + new_selfm_PDU_len) - selfm_tvb_len);