diff options
author | Moshe Kaplan <me@moshekaplan.com> | 2021-12-19 21:40:23 -0500 |
---|---|---|
committer | AndersBroman <a.broman58@gmail.com> | 2021-12-22 11:01:11 +0000 |
commit | 69d54d6f8e668b6018375121ea2afb99f3dd0177 (patch) | |
tree | d0fffa200bbaf4ef325ac00c75a79d682bf379c6 /epan/addr_resolv.h | |
parent | b5928542b77cf789b112370bb7acc00942162519 (diff) | |
download | wireshark-69d54d6f8e668b6018375121ea2afb99f3dd0177.tar.gz wireshark-69d54d6f8e668b6018375121ea2afb99f3dd0177.tar.bz2 wireshark-69d54d6f8e668b6018375121ea2afb99f3dd0177.zip |
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/addr_resolv.h')
-rw-r--r-- | epan/addr_resolv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/addr_resolv.h b/epan/addr_resolv.h index eea047f16d..f1eeb44dbc 100644 --- a/epan/addr_resolv.h +++ b/epan/addr_resolv.h @@ -10,7 +10,7 @@ * SPDX-License-Identifier: GPL-2.0-or-later */ /* The buffers returned by these functions are all allocated with a - * packet lifetime and does not have have to be freed. + * packet lifetime and does not have to be freed. * However, take into account that when the packet dissection * completes, these buffers will be automatically reclaimed/freed. * If you need the buffer to remain for a longer scope than packet lifetime |