]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Mon, 11 Nov 2013 04:24:58 +0000 (21:24 -0700)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Mon, 11 Nov 2013 04:24:58 +0000 (21:24 -0700)
src/ipc/TypedMsgHdr.cc

index 924507834f5cc83dd997657e2013d54340cd55c7..5559cb9100f957e75d9a0d07c202692e36533d8a 100644 (file)
@@ -170,10 +170,10 @@ Ipc::TypedMsgHdr::putRaw(const void *raw, size_t size)
 bool
 Ipc::TypedMsgHdr::hasFd() const
 {
-     struct cmsghdr *cmsg = CMSG_FIRSTHDR(this);
-     return cmsg &&
-         cmsg->cmsg_level == SOL_SOCKET &&
-         cmsg->cmsg_type == SCM_RIGHTS;
+    struct cmsghdr *cmsg = CMSG_FIRSTHDR(this);
+    return cmsg &&
+           cmsg->cmsg_level == SOL_SOCKET &&
+           cmsg->cmsg_type == SCM_RIGHTS;
 }
 
 void