mirror of
https://github.com/moparisthebest/curl
synced 2025-03-01 01:41:50 -05:00
typecast the conversion from const char * to char *
This commit is contained in:
parent
4534ca238d
commit
b28b616eb2
@ -594,7 +594,7 @@ static Curl_addrinfo *my_getaddrinfo(struct SessionHandle *data,
|
||||
h->h_addrtype = AF_INET;
|
||||
h->h_length = sizeof(*addrentry);
|
||||
h->h_name = &buf->h_name[0];
|
||||
MakeIP(ntohl(in), h->h_name, sizeof(buf->h_name));
|
||||
MakeIP(ntohl(in), (char *)h->h_name, sizeof(buf->h_name));
|
||||
}
|
||||
#if defined(HAVE_GETHOSTBYNAME_R)
|
||||
else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user