Skip to content
Snippets Groups Projects
Commit 39b689f9 authored by Yang Tse's avatar Yang Tse
Browse files

make previous compiler warning fix more portable

parent 6fd3ff40
No related branches found
No related tags found
No related merge requests found
......@@ -612,28 +612,28 @@ static const unsigned char *display_rr(const unsigned char *aptr,
printf(" %d\n", DNS__16BIT(aptr + 2)); /* preference */
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)
return NULL;
printf("\t\t\t\t\t\t%s\n", name);
ares_free_string(name);
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)
return NULL;
printf("\t\t\t\t\t\t%s\n", name);
ares_free_string(name);
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)
return NULL;
printf("\t\t\t\t\t\t%s\n", name);
ares_free_string(name);
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)
return NULL;
printf("\t\t\t\t\t\t%s", name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment