From: Rich Felker Date: Tue, 15 Feb 2011 00:40:20 +0000 (-0500) Subject: another pointer signedness fix X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=6fbf8bfd750a5c982b716bea0802692847918951 another pointer signedness fix --- diff --git a/src/network/__dns.c b/src/network/__dns.c index 73ec422d..b8547bba 100644 --- a/src/network/__dns.c +++ b/src/network/__dns.c @@ -46,7 +46,7 @@ int __dns_doqueries(unsigned char *dest, const char *name, int *rr, int rrcnt) /* Construct query template - RR and ID will be filled later */ if (strlen(name)-1 >= 254U) return -1; q[2] = q[5] = 1; - strcpy(q+13, name); + strcpy((char *)q+13, name); for (i=13; q[i]; i=j+1) { for (j=i; q[j] && q[j] != '.'; j++); if (j-i-1u > 62u) return -1;