diff options
author | Dario Lombardo <lomato@gmail.com> | 2015-11-23 13:27:10 +0100 |
---|---|---|
committer | Peter Wu <peter@lekensteyn.nl> | 2015-11-23 20:30:10 +0000 |
commit | 81330b148a36224d195e9fa664c711301efd2a09 (patch) | |
tree | e6a5232acd57c132ad0069678f7261d5c2bcf2c1 /extcap | |
parent | 57e18b00346f86f0b5d182fcc749a1a005fadb96 (diff) | |
download | wireshark-81330b148a36224d195e9fa664c711301efd2a09.tar.gz wireshark-81330b148a36224d195e9fa664c711301efd2a09.tar.bz2 wireshark-81330b148a36224d195e9fa664c711301efd2a09.zip |
sshdump: fix int issue
Change-Id: Ic4367c90e79f6d3ee0d3e55f9f3ab0ebf74190f7
Reviewed-on: https://code.wireshark.org/review/12065
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'extcap')
-rw-r--r-- | extcap/sshdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extcap/sshdump.c b/extcap/sshdump.c index fb89bb0f5a..012366114c 100644 --- a/extcap/sshdump.c +++ b/extcap/sshdump.c @@ -362,7 +362,7 @@ static ssh_channel run_ssh_command(ssh_session sshs, const char* capture_bin, co static int ssh_open_remote_connection(const char* hostname, const unsigned int port, const char* username, const char* password, const char* sshkey, const char* sshkey_passphrase, const char* iface, const char* cfilter, const char* capture_bin, - const guint count, const char* fifo) + const unsigned long int count, const char* fifo) { ssh_session sshs; ssh_channel channel; |