From: Yang Tse Date: Thu, 28 May 2009 16:18:25 +0000 (+0000) Subject: fix compiler warning: unused parameter X-Git-Tag: curl-7_19_6~212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f13cbcf17568fcfdd4160448ceb84e2e0a0704ee;p=thirdparty%2Fcurl.git fix compiler warning: unused parameter --- diff --git a/lib/http.c b/lib/http.c index a17c6eba98..466d9539aa 100644 --- a/lib/http.c +++ b/lib/http.c @@ -524,7 +524,7 @@ output_auth_headers(struct connectdata *conn, &data->state.proxyneg:&data->state.negotiate; #endif -#ifndef CURL_DISABLE_CRYPTO_AUTH +#ifdef CURL_DISABLE_CRYPTO_AUTH (void)request; (void)path; #endif diff --git a/lib/tftp.c b/lib/tftp.c index eff2a1cdc5..51f4b87c93 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -411,9 +411,11 @@ static size_t tftp_option_add(tftp_state_data_t *state, size_t csize, static CURLcode tftp_connect_for_tx(tftp_state_data_t *state, tftp_event_t event) { CURLcode res; +#ifndef CURL_DISABLE_VERBOSE_STRINGS struct SessionHandle *data = state->conn->data; infof(data, "%s\n", "Connected for transmit"); +#endif state->state = TFTP_STATE_TX; res = tftp_set_timeouts(state); if(res != CURLE_OK) @@ -424,9 +426,11 @@ static CURLcode tftp_connect_for_tx(tftp_state_data_t *state, tftp_event_t event static CURLcode tftp_connect_for_rx(tftp_state_data_t *state, tftp_event_t event) { CURLcode res; +#ifndef CURL_DISABLE_VERBOSE_STRINGS struct SessionHandle *data = state->conn->data; infof(data, "%s\n", "Connected for receive"); +#endif state->state = TFTP_STATE_RX; res = tftp_set_timeouts(state); if(res != CURLE_OK) diff --git a/lib/url.c b/lib/url.c index a97176495b..bba34ff2c0 100644 --- a/lib/url.c +++ b/lib/url.c @@ -2878,6 +2878,8 @@ static CURLcode ConnectPlease(struct SessionHandle *data, infof(data, "About to connect() to %s%s port %d (#%d)\n", conn->bits.proxy?"proxy ":"", hostname, conn->port, conn->connectindex); +#else + (void)data; #endif /*************************************************************