Module Name: src Committed By: roy Date: Sun Jan 29 18:33:07 UTC 2012
Modified Files: src/sys/sys: socket.h Log Message: Allow using CMSG_NXTHDR with -Wcast-align. If various checks are omitted, the CMSG_NXTHDR macro expands to (struct cmsghdr *)((char *)(cmsg) + \ _ALIGN(((struct cmsghdr *)(cmsg))->cmsg_len)) Although there is no alignment problem (assuming cmsg is properly aligned and _ALIGN is correct), this violates -Wcast-align on strict-alignment architectures. Therefore an intermediate cast to void * is appropriate here. There is no workaround other than not using -Wcast-align. Taken from FreeBSD commit r220742 by jilles To generate a diff of this commit: cvs rdiff -u -r1.105 -r1.106 src/sys/sys/socket.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.