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 /extcap | |
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 'extcap')
-rw-r--r-- | extcap/ciscodump.c | 2 | ||||
-rw-r--r-- | extcap/sshdump.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extcap/ciscodump.c b/extcap/ciscodump.c index c8b5c0dd9c..ccb250b764 100644 --- a/extcap/ciscodump.c +++ b/extcap/ciscodump.c @@ -580,7 +580,7 @@ int main(int argc, char *argv[]) "If not specified, ssh-agent and ssh-key are used"); extcap_help_add_option(extcap_conf, "--sshkey <public key path>", "the path of the ssh key"); extcap_help_add_option(extcap_conf, "--sshkey-passphrase <public key passphrase>", "the passphrase to unlock public ssh"); - extcap_help_add_option(extcap_conf, "--proxycommand <proxy command>", "the command to use as proxy the the ssh connection"); + extcap_help_add_option(extcap_conf, "--proxycommand <proxy command>", "the command to use as proxy for the ssh connection"); extcap_help_add_option(extcap_conf, "--remote-interface <iface>", "the remote capture interface"); extcap_help_add_option(extcap_conf, "--remote-filter <filter>", "a filter for remote capture " "(default: don't capture data for lal interfaces IPs)"); diff --git a/extcap/sshdump.c b/extcap/sshdump.c index 9d16161246..92d648fc5e 100644 --- a/extcap/sshdump.c +++ b/extcap/sshdump.c @@ -414,7 +414,7 @@ int main(int argc, char *argv[]) extcap_help_add_option(extcap_conf, "--remote-password <password>", "the remote SSH password. If not specified, ssh-agent and ssh-key are used"); extcap_help_add_option(extcap_conf, "--sshkey <public key path>", "the path of the ssh key"); extcap_help_add_option(extcap_conf, "--sshkey-passphrase <public key passphrase>", "the passphrase to unlock public ssh"); - extcap_help_add_option(extcap_conf, "--proxycommand <proxy command>", "the command to use as proxy the the ssh connection"); + extcap_help_add_option(extcap_conf, "--proxycommand <proxy command>", "the command to use as proxy for the ssh connection"); extcap_help_add_option(extcap_conf, "--remote-interface <iface>", "the remote capture interface"); extcap_help_add_option(extcap_conf, "--remote-capture-command <capture command>", "the remote capture command"); extcap_help_add_option(extcap_conf, "--remote-sudo", "use sudo on the remote machine to capture"); |