aboutsummaryrefslogtreecommitdiffstats
path: root/epan/reassemble.h
diff options
context:
space:
mode:
authorMoshe Kaplan <me@moshekaplan.com>2021-12-19 21:40:23 -0500
committerAndersBroman <a.broman58@gmail.com>2021-12-22 11:01:11 +0000
commit69d54d6f8e668b6018375121ea2afb99f3dd0177 (patch)
treed0fffa200bbaf4ef325ac00c75a79d682bf379c6 /epan/reassemble.h
parentb5928542b77cf789b112370bb7acc00942162519 (diff)
Corrects repeated words throughout the code.
Repeated words were found with: egrep "(\b[a-zA-Z]+) +\1\b" . -Ir and then manually reviewed. Non-displayed strings (e.g., in comments) were also corrected, to ease future review.
Diffstat (limited to 'epan/reassemble.h')
-rw-r--r--epan/reassemble.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/reassemble.h b/epan/reassemble.h
index 9d85443cef..18613a63f8 100644
--- a/epan/reassemble.h
+++ b/epan/reassemble.h
@@ -218,7 +218,7 @@ fragment_add_multiple_ok(reassembly_table *table, tvbuff_t *tvb,
* If the packet was seen before, return the head of the fully reassembled
* fragments list (NULL if there was none).
*
- * Otherwise (if reassembly was not possible before), try to to add the new
+ * Otherwise (if reassembly was not possible before), try to add the new
* fragment to the fragments table. If reassembly is now possible, remove all
* (reassembled) fragments from the fragments table and store it as a completed
* reassembly. The head of this reassembled fragments list is returned.