From: Automatic source maintenance Date: Thu, 9 Aug 2012 00:12:47 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: sourceformat-review-1~129 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=00e73a76b06d3e1f431452f98cdad52d2f14e174;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/compat/cmsg.h b/compat/cmsg.h index a6dea13f7e..b299d31b58 100644 --- a/compat/cmsg.h +++ b/compat/cmsg.h @@ -14,12 +14,12 @@ /* mostly windows-specific */ #ifndef CMSG_SPACE -struct cmsghdr{ - unsigned int cmsg_len; - int cmsg_level; - int cmsg_type; - unsigned char cmsg_data[16]; /* dummy */ - /* followed by UCHAR cmsg_data[]; */ +struct cmsghdr { + unsigned int cmsg_len; + int cmsg_level; + int cmsg_type; + unsigned char cmsg_data[16]; /* dummy */ + /* followed by UCHAR cmsg_data[]; */ } ; /* lifted off https://metacpan.org/source/SAMPO/Socket-PassAccessRights-0.03/passfd.c */ @@ -69,11 +69,11 @@ struct msghdr { struct iovec { - void *iov_base; - size_t iov_len; + void *iov_base; + size_t iov_len; }; struct sockaddr_un { - char sun_family; + char sun_family; char sun_path[256]; /* pathname */ }; # define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) \