diff options
author | Dario Lombardo <lomato@gmail.com> | 2016-01-27 11:19:55 +0100 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2016-01-27 18:54:00 +0000 |
commit | 1326cbcc4256897ad9f3d3e48842bed506c8d627 (patch) | |
tree | 8acb2e61079407c74b329a973b46d29d323981d0 /extcap | |
parent | 8049df7943f7f18562afca128724a193dd78464b (diff) | |
download | wireshark-1326cbcc4256897ad9f3d3e48842bed506c8d627.tar.gz wireshark-1326cbcc4256897ad9f3d3e48842bed506c8d627.tar.bz2 wireshark-1326cbcc4256897ad9f3d3e48842bed506c8d627.zip |
sshdump: fix error in extcap sentence.
Change-Id: Ibbabd4d160661985d9a7d8caeb577845f45b847e
Reviewed-on: https://code.wireshark.org/review/13561
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'extcap')
-rw-r--r-- | extcap/sshdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extcap/sshdump.c b/extcap/sshdump.c index a160bde10e..6dcfb61547 100644 --- a/extcap/sshdump.c +++ b/extcap/sshdump.c @@ -557,8 +557,8 @@ static int list_config(char *interface, unsigned int remote_port) printf("arg {number=%u}{call=--sshkey}{display=Path to SSH private key}" "{type=fileselect}{tooltip=The path on the local filesystem of the private ssh key}\n", inc++); - printf("arg {number=%u}{call=--sshkey-passphrase}{display=SSH key passphrase}\n" - "{type=string}{tooltip=Passphrase to unlock the SSH private key}\n", + printf("arg {number=%u}{call=--sshkey-passphrase}{display=SSH key passphrase}" + "{type=password}{tooltip=Passphrase to unlock the SSH private key}\n", inc++); printf("arg {number=%u}{call=--remote-interface}{display=Remote interface}" "{type=string}{default=eth0}{tooltip=The remote network interface used for capture" |