ERR: Remove some curl warnings
This commit is contained in:
parent
0d431a1daa
commit
261359919c
|
@ -126,7 +126,7 @@ int GetWebFile(void)
|
||||||
return retVal;
|
return retVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(/*int argc, char **argv*/)
|
||||||
{
|
{
|
||||||
int retVal = 0;
|
int retVal = 0;
|
||||||
curl_global_init(CURL_GLOBAL_DEFAULT);
|
curl_global_init(CURL_GLOBAL_DEFAULT);
|
||||||
|
|
|
@ -141,6 +141,8 @@ int Curl_nonblock(int socket, /* operate on this */
|
||||||
#ifndef SETBLOCK
|
#ifndef SETBLOCK
|
||||||
#error "no non-blocking method was found/used/set"
|
#error "no non-blocking method was found/used/set"
|
||||||
#endif
|
#endif
|
||||||
|
(void)socket;
|
||||||
|
(void)nonblock;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -38,6 +38,8 @@
|
||||||
/* Make this the last #include */
|
/* Make this the last #include */
|
||||||
#ifdef MALLOCDEBUG
|
#ifdef MALLOCDEBUG
|
||||||
#include "memdebug.h"
|
#include "memdebug.h"
|
||||||
|
#else
|
||||||
|
#include <stdlib.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -228,6 +228,7 @@ CURLcode Curl_write(struct connectdata *conn, int sockfd,
|
||||||
ssize_t *written)
|
ssize_t *written)
|
||||||
{
|
{
|
||||||
ssize_t bytes_written;
|
ssize_t bytes_written;
|
||||||
|
(void)conn;
|
||||||
|
|
||||||
#ifdef USE_SSLEAY
|
#ifdef USE_SSLEAY
|
||||||
/* SSL_write() is said to return 'int' while write() and send() returns
|
/* SSL_write() is said to return 'int' while write() and send() returns
|
||||||
|
@ -342,6 +343,7 @@ int Curl_read(struct connectdata *conn,
|
||||||
{
|
{
|
||||||
ssize_t nread;
|
ssize_t nread;
|
||||||
*n=0; /* reset amount to zero */
|
*n=0; /* reset amount to zero */
|
||||||
|
(void)conn;
|
||||||
|
|
||||||
#ifdef USE_SSLEAY
|
#ifdef USE_SSLEAY
|
||||||
if (conn->ssl.use) {
|
if (conn->ssl.use) {
|
||||||
|
|
|
@ -673,6 +673,7 @@ static int Curl_ASN1_UTCTIME_output(struct connectdata *conn,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* ====================================================== */
|
/* ====================================================== */
|
||||||
|
#ifdef USE_SSLEAY
|
||||||
static int
|
static int
|
||||||
cert_hostcheck(const char *certname, const char *hostname)
|
cert_hostcheck(const char *certname, const char *hostname)
|
||||||
{
|
{
|
||||||
|
@ -709,6 +710,7 @@ cert_hostcheck(const char *certname, const char *hostname)
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ====================================================== */
|
/* ====================================================== */
|
||||||
CURLcode
|
CURLcode
|
||||||
|
|
Loading…
Reference in New Issue