summaryrefslogtreecommitdiff
path: root/adig.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-04-07 14:37:17 +0000
committerYang Tse <yangsita@gmail.com>2008-04-07 14:37:17 +0000
commit4ba9cb3a466bd01cca0642a348193c8b0211b53b (patch)
tree98cb54f9ce59431b7bf3c231e09305d11c0d4133 /adig.c
parentc73ff0391f177cf3b4210318d4f38191c2f6f8c3 (diff)
downloadc-ares-4ba9cb3a466bd01cca0642a348193c8b0211b53b.tar.gz
c-ares-4ba9cb3a466bd01cca0642a348193c8b0211b53b.tar.bz2
c-ares-4ba9cb3a466bd01cca0642a348193c8b0211b53b.zip
fix compiler warning: indirection to slightly different base types
Diffstat (limited to 'adig.c')
-rw-r--r--adig.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/adig.c b/adig.c
index e579c55..f72fb16 100644
--- a/adig.c
+++ b/adig.c
@@ -608,32 +608,32 @@ static const unsigned char *display_rr(const unsigned char *aptr,
case T_NAPTR:
- printf("\t%d", DNS__16BIT(aptr)); // order
- printf(" %d\n", DNS__16BIT(aptr + 2)); // preference
+ printf("\t%d", DNS__16BIT(aptr)); /* order */
+ printf(" %d\n", DNS__16BIT(aptr + 2)); /* preference */
p = aptr + 4;
- status = ares_expand_string(p, abuf, alen, &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, &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, &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, &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);