mirror of
https://github.com/moparisthebest/curl
synced 2024-11-14 21:45:13 -05:00
make previous compiler warning fix more portable
This commit is contained in:
parent
6fd3ff4032
commit
39b689f966
@ -612,28 +612,28 @@ static const unsigned char *display_rr(const unsigned char *aptr,
|
|||||||
printf(" %d\n", DNS__16BIT(aptr + 2)); /* preference */
|
printf(" %d\n", DNS__16BIT(aptr + 2)); /* preference */
|
||||||
|
|
||||||
p = aptr + 4;
|
p = aptr + 4;
|
||||||
status = ares_expand_string(p, abuf, alen, &(unsigned char *)name, &len);
|
status = ares_expand_string(p, abuf, alen, (unsigned char **)&name, &len);
|
||||||
if (status != ARES_SUCCESS)
|
if (status != ARES_SUCCESS)
|
||||||
return NULL;
|
return NULL;
|
||||||
printf("\t\t\t\t\t\t%s\n", name);
|
printf("\t\t\t\t\t\t%s\n", name);
|
||||||
ares_free_string(name);
|
ares_free_string(name);
|
||||||
p += len;
|
p += len;
|
||||||
|
|
||||||
status = ares_expand_string(p, abuf, alen, &(unsigned char *)name, &len);
|
status = ares_expand_string(p, abuf, alen, (unsigned char **)&name, &len);
|
||||||
if (status != ARES_SUCCESS)
|
if (status != ARES_SUCCESS)
|
||||||
return NULL;
|
return NULL;
|
||||||
printf("\t\t\t\t\t\t%s\n", name);
|
printf("\t\t\t\t\t\t%s\n", name);
|
||||||
ares_free_string(name);
|
ares_free_string(name);
|
||||||
p += len;
|
p += len;
|
||||||
|
|
||||||
status = ares_expand_string(p, abuf, alen, &(unsigned char *)name, &len);
|
status = ares_expand_string(p, abuf, alen, (unsigned char **)&name, &len);
|
||||||
if (status != ARES_SUCCESS)
|
if (status != ARES_SUCCESS)
|
||||||
return NULL;
|
return NULL;
|
||||||
printf("\t\t\t\t\t\t%s\n", name);
|
printf("\t\t\t\t\t\t%s\n", name);
|
||||||
ares_free_string(name);
|
ares_free_string(name);
|
||||||
p += len;
|
p += len;
|
||||||
|
|
||||||
status = ares_expand_string(p, abuf, alen, &(unsigned char *)name, &len);
|
status = ares_expand_string(p, abuf, alen, (unsigned char **)&name, &len);
|
||||||
if (status != ARES_SUCCESS)
|
if (status != ARES_SUCCESS)
|
||||||
return NULL;
|
return NULL;
|
||||||
printf("\t\t\t\t\t\t%s", name);
|
printf("\t\t\t\t\t\t%s", name);
|
||||||
|
Loading…
Reference in New Issue
Block a user