]> git.kaiwu.me - nginx.git/commitdiff
Style.
authorMaxim Dounin <mdounin@mdounin.ru>
Thu, 1 Jun 2017 13:49:14 +0000 (16:49 +0300)
committerMaxim Dounin <mdounin@mdounin.ru>
Thu, 1 Jun 2017 13:49:14 +0000 (16:49 +0300)
src/os/unix/ngx_udp_sendmsg_chain.c

index 5f1cfa54ee20bbf00568e11341aecaaabbb45b6f..5399c7916a9e7806390659d7fca0ce7836cfd3cf 100644 (file)
@@ -206,13 +206,13 @@ ngx_sendmsg(ngx_connection_t *c, ngx_iovec_t *vec)
 #if (NGX_HAVE_MSGHDR_MSG_CONTROL)
 
 #if (NGX_HAVE_IP_SENDSRCADDR)
-    u_char             msg_control[CMSG_SPACE(sizeof(struct in_addr))];
+    u_char         msg_control[CMSG_SPACE(sizeof(struct in_addr))];
 #elif (NGX_HAVE_IP_PKTINFO)
-    u_char             msg_control[CMSG_SPACE(sizeof(struct in_pktinfo))];
+    u_char         msg_control[CMSG_SPACE(sizeof(struct in_pktinfo))];
 #endif
 
 #if (NGX_HAVE_INET6 && NGX_HAVE_IPV6_RECVPKTINFO)
-    u_char             msg_control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
+    u_char         msg_control6[CMSG_SPACE(sizeof(struct in6_pktinfo))];
 #endif
 
 #endif