1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

compiler warning: fix

Fix compiler warning: unused variable 'data'
This commit is contained in:
Yang Tse 2011-05-23 12:57:23 +02:00
parent 3e70c28ce5
commit bed6b89a2f

View File

@ -509,10 +509,11 @@ static int sshkeycallback(CURL *easy,
static CURLcode ssh_knownhost(struct connectdata *conn) static CURLcode ssh_knownhost(struct connectdata *conn)
{ {
struct SessionHandle *data = conn->data;
CURLcode result = CURLE_OK; CURLcode result = CURLE_OK;
#ifdef HAVE_LIBSSH2_KNOWNHOST_API #ifdef HAVE_LIBSSH2_KNOWNHOST_API
struct SessionHandle *data = conn->data;
if(data->set.str[STRING_SSH_KNOWNHOSTS]) { if(data->set.str[STRING_SSH_KNOWNHOSTS]) {
/* we're asked to verify the host against a file */ /* we're asked to verify the host against a file */
struct ssh_conn *sshc = &conn->proto.sshc; struct ssh_conn *sshc = &conn->proto.sshc;