summaryrefslogtreecommitdiff
path: root/adig.c
diff options
context:
space:
mode:
Diffstat (limited to 'adig.c')
-rw-r--r--adig.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/adig.c b/adig.c
index f72fb16..f7f601c 100644
--- a/adig.c
+++ b/adig.c
@@ -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);