strcpy(tmpbuf, sep->s_name);
else
/* get port as a string */
- sprintf(tmpbuf, "%u", ntohs(port));
+ sprintf(tmpbuf, "%u", (unsigned short)ntohs(port));
if (strlen(tmpbuf) < buflen)
/* return it if buffer big enough */
strcpy(buf, tmpbuf);
*waitp = 0; /* don't wait, we act synchronously */
+#if defined(HAVE_GETHOSTBYNAME_R_3) || defined(HAVE_GETHOSTBYNAME_R_6)
+ int res = ERANGE;
+#endif
+
if(1 == Curl_inet_pton(AF_INET, hostname, &in))
/* This is a dotted IP address 123.123.123.123-style */
return Curl_ip2addr(in, hostname, port);
*/
else {
int h_errnop;
- int res=ERANGE;
buf = (struct hostent *)calloc(CURL_HOSTENT_SIZE, 1);
if(!buf)
#ifdef HAVE_GETHOSTBYNAME_R_5
/* Solaris, IRIX and more */
- (void)res; /* prevent compiler warning */
h = gethostbyname_r(hostname,
(struct hostent *)buf,
(char *)buf + sizeof(struct hostent),
}
break;
case UPTCharRange:
- pat->content.CharRange.ptr_c += (char)(pat->content.CharRange.step);
+ pat->content.CharRange.ptr_c = (char)(pat->content.CharRange.step +
+ (int)((unsigned char)pat->content.CharRange.ptr_c));
if (pat->content.CharRange.ptr_c > pat->content.CharRange.max_c) {
pat->content.CharRange.ptr_c = pat->content.CharRange.min_c;
carry = TRUE;
newline = 1;
}
}
- *p++ = c;
+ *p++ = (char)c;
}
b->counter = (int)(p - dp->th_data);
}
for (cp = mode; *cp; cp++)
if (isupper((int)*cp))
- *cp = tolower((int)*cp);
+ *cp = (char)tolower((int)*cp);
/* store input protocol */
fprintf(test->server, "mode: %s\n", mode);