We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--- dkim-dns.c Fri Feb 9 14:22:49 2024 +++ new-dkim-dns.c Fri Feb 9 14:22:35 2024 @@ -276,7 +276,7 @@ struct sockaddr_in6 in6; # endif /* AF_INET6 */ struct state *res; - res_sockaddr_union nses[MAXNS]; + union res_sockaddr_union nses[MAXNS]; assert(srv != NULL); assert(nslist != NULL); @@ -289,7 +289,7 @@ for (ns = strtok_r(tmp, ",", &last); ns != NULL && nscount < MAXNS; - ns = strtok_r(NULL, ",", &last) + ns = strtok_r(NULL, ",", &last)) { memset(&in, '\0', sizeof in); # ifdef AF_INET6
The missing union could just be old gcc. But the missing ) in the for-loop is surely never accepted?
union
)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The missing
union
could just be old gcc. But the missing)
in the for-loop is surely never accepted?The text was updated successfully, but these errors were encountered: