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>
This commit is contained in:
Dario Lombardo 2015-11-23 13:27:10 +01:00 committed by Peter Wu
parent 57e18b0034
commit 81330b148a
1 changed files with 1 additions and 1 deletions

View File

@ -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;