comparison src/os/unix/ngx_posix_config.h @ 2006:b52cb9bf2064

style fix: remove tabs and trailing spaces
author Igor Sysoev <igor@sysoev.ru>
date Wed, 14 May 2008 07:54:52 +0000
parents d85e291b99f9
children ceef364208c8
comparison
equal deleted inserted replaced
2005:22ec7da42e6f 2006:b52cb9bf2064
108 108
109 #if (__FreeBSD__) && (__FreeBSD_version < 400017) 109 #if (__FreeBSD__) && (__FreeBSD_version < 400017)
110 110
111 #include <sys/param.h> /* ALIGN() */ 111 #include <sys/param.h> /* ALIGN() */
112 112
113 /* 113 /*
114 * FreeBSD 3.x has no CMSG_SPACE() and CMSG_LEN() and has the broken CMSG_DATA() 114 * FreeBSD 3.x has no CMSG_SPACE() and CMSG_LEN() and has the broken CMSG_DATA()
115 */ 115 */
116 116
117 #undef CMSG_SPACE 117 #undef CMSG_SPACE
118 #define CMSG_SPACE(l) (ALIGN(sizeof(struct cmsghdr)) + ALIGN(l)) 118 #define CMSG_SPACE(l) (ALIGN(sizeof(struct cmsghdr)) + ALIGN(l))