another pointer signedness fix
authorRich Felker <dalias@aerifal.cx>
Tue, 15 Feb 2011 00:40:20 +0000 (19:40 -0500)
committerRich Felker <dalias@aerifal.cx>
Tue, 15 Feb 2011 00:40:20 +0000 (19:40 -0500)
src/network/__dns.c

index 73ec422..b8547bb 100644 (file)
@@ -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;