mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
Fixed some compiler warnings with gcc
This commit is contained in:
parent
91bc396178
commit
88513d2d1a
@ -540,8 +540,7 @@ int Curl_resolv_timeout(struct connectdata *conn,
|
|||||||
unsigned int prev_alarm=0;
|
unsigned int prev_alarm=0;
|
||||||
struct SessionHandle *data = conn->data;
|
struct SessionHandle *data = conn->data;
|
||||||
#endif /* USE_ALARM_TIMEOUT */
|
#endif /* USE_ALARM_TIMEOUT */
|
||||||
|
int rc;
|
||||||
int rc = CURLRESOLV_ERROR; /* error by default */
|
|
||||||
|
|
||||||
*entry = NULL;
|
*entry = NULL;
|
||||||
|
|
||||||
@ -562,7 +561,7 @@ int Curl_resolv_timeout(struct connectdata *conn,
|
|||||||
if(sigsetjmp(curl_jmpenv, 1)) {
|
if(sigsetjmp(curl_jmpenv, 1)) {
|
||||||
/* this is coming from a siglongjmp() after an alarm signal */
|
/* this is coming from a siglongjmp() after an alarm signal */
|
||||||
failf(data, "name lookup timed out");
|
failf(data, "name lookup timed out");
|
||||||
return rc;
|
return CURLRESOLV_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************
|
/*************************************************************
|
||||||
|
@ -591,6 +591,9 @@ http_output_auth(struct connectdata *conn,
|
|||||||
if(result)
|
if(result)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
(void)request;
|
||||||
|
(void)path;
|
||||||
#endif
|
#endif
|
||||||
if(auth) {
|
if(auth) {
|
||||||
infof(data, "Proxy auth using %s with user '%s'\n",
|
infof(data, "Proxy auth using %s with user '%s'\n",
|
||||||
|
@ -45,7 +45,7 @@ static char buf[SIZE_HEADERS + 100];
|
|||||||
int test(char *URL)
|
int test(char *URL)
|
||||||
{
|
{
|
||||||
CURL *curl;
|
CURL *curl;
|
||||||
CURLcode res;
|
CURLcode res = CURLE_FAILED_INIT;
|
||||||
int i;
|
int i;
|
||||||
struct curl_slist *headerlist=NULL, *hl;
|
struct curl_slist *headerlist=NULL, *hl;
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@ const char *serverlogfile=""; /* for a util.c function we don't use */
|
|||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int arg=1;
|
int arg=1;
|
||||||
char *host;
|
const char *host = NULL;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
while(argc>arg) {
|
while(argc>arg) {
|
||||||
|
@ -406,13 +406,13 @@ static bool juggle(curl_socket_t *sockfdp,
|
|||||||
fd_set fds_read;
|
fd_set fds_read;
|
||||||
fd_set fds_write;
|
fd_set fds_write;
|
||||||
fd_set fds_err;
|
fd_set fds_err;
|
||||||
curl_socket_t sockfd;
|
curl_socket_t sockfd = CURL_SOCKET_BAD;
|
||||||
curl_socket_t maxfd;
|
curl_socket_t maxfd = CURL_SOCKET_BAD;
|
||||||
ssize_t rc;
|
ssize_t rc;
|
||||||
ssize_t nread_socket;
|
ssize_t nread_socket;
|
||||||
ssize_t bytes_written;
|
ssize_t bytes_written;
|
||||||
ssize_t buffer_len;
|
ssize_t buffer_len;
|
||||||
int error;
|
int error = 0;
|
||||||
|
|
||||||
/* 'buffer' is this excessively large only to be able to support things like
|
/* 'buffer' is this excessively large only to be able to support things like
|
||||||
test 1003 which tests exceedingly large server response lines */
|
test 1003 which tests exceedingly large server response lines */
|
||||||
|
@ -490,7 +490,7 @@ static int ProcessRequest(struct httprequest *req)
|
|||||||
static void storerequest(char *reqbuf, ssize_t totalsize)
|
static void storerequest(char *reqbuf, ssize_t totalsize)
|
||||||
{
|
{
|
||||||
int res;
|
int res;
|
||||||
int error;
|
int error = 0;
|
||||||
ssize_t written;
|
ssize_t written;
|
||||||
ssize_t writeleft;
|
ssize_t writeleft;
|
||||||
FILE *dump;
|
FILE *dump;
|
||||||
@ -550,7 +550,7 @@ static int get_request(curl_socket_t sock, struct httprequest *req)
|
|||||||
char *reqbuf = req->reqbuf;
|
char *reqbuf = req->reqbuf;
|
||||||
ssize_t got = 0;
|
ssize_t got = 0;
|
||||||
|
|
||||||
char *pipereq;
|
char *pipereq = NULL;
|
||||||
int pipereq_length = 0;
|
int pipereq_length = 0;
|
||||||
|
|
||||||
if(req->pipelining) {
|
if(req->pipelining) {
|
||||||
@ -655,7 +655,7 @@ static int send_doc(curl_socket_t sock, struct httprequest *req)
|
|||||||
bool persistant = TRUE;
|
bool persistant = TRUE;
|
||||||
bool sendfailure = FALSE;
|
bool sendfailure = FALSE;
|
||||||
size_t responsesize;
|
size_t responsesize;
|
||||||
int error;
|
int error = 0;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
static char weare[256];
|
static char weare[256];
|
||||||
|
@ -235,7 +235,7 @@ int write_pidfile(const char *filename)
|
|||||||
void set_advisor_read_lock(const char *filename)
|
void set_advisor_read_lock(const char *filename)
|
||||||
{
|
{
|
||||||
FILE *lockfile;
|
FILE *lockfile;
|
||||||
int error;
|
int error = 0;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
@ -257,7 +257,7 @@ void set_advisor_read_lock(const char *filename)
|
|||||||
|
|
||||||
void clear_advisor_read_lock(const char *filename)
|
void clear_advisor_read_lock(const char *filename)
|
||||||
{
|
{
|
||||||
int error;
|
int error = 0;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
Loading…
Reference in New Issue
Block a user