From: Marcel Raad Date: Sun, 19 Jul 2020 13:02:16 +0000 (+0200) Subject: doh: remove redundant cast X-Git-Tag: curl-7_72_0~92 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d746ff11073b5bbf8fff33b2eb7fe110ddf9fee8;p=thirdparty%2Fcurl.git doh: remove redundant cast Closes https://github.com/curl/curl/pull/5704 --- diff --git a/lib/doh.c b/lib/doh.c index ebb2c243bc..8bc3428ff5 100644 --- a/lib/doh.c +++ b/lib/doh.c @@ -858,7 +858,7 @@ doh2ai(const struct dohentry *de, const char *hostname, int port) addr = (void *)ai->ai_addr; /* storage area for this info */ DEBUGASSERT(sizeof(struct in_addr) == sizeof(de->addr[i].ip.v4)); memcpy(&addr->sin_addr, &de->addr[i].ip.v4, sizeof(struct in_addr)); - addr->sin_family = (CURL_SA_FAMILY_T)addrtype; + addr->sin_family = addrtype; addr->sin_port = htons((unsigned short)port); break; @@ -867,7 +867,7 @@ doh2ai(const struct dohentry *de, const char *hostname, int port) addr6 = (void *)ai->ai_addr; /* storage area for this info */ DEBUGASSERT(sizeof(struct in6_addr) == sizeof(de->addr[i].ip.v6)); memcpy(&addr6->sin6_addr, &de->addr[i].ip.v6, sizeof(struct in6_addr)); - addr6->sin6_family = (CURL_SA_FAMILY_T)addrtype; + addr6->sin6_family = addrtype; addr6->sin6_port = htons((unsigned short)port); break; #endif