summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-22 11:24:48 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-22 11:24:48 (GMT)
commit33ded984ff02df26e0faf1d254abd2ea6acc0070 (patch)
treefb801beba2c6366d2815b95ac410cd6a9c5ceb34 /unix
parent490b4bf1f8778fddb9814d30cdf2c4bd89d9581d (diff)
downloadtcl-33ded984ff02df26e0faf1d254abd2ea6acc0070.zip
tcl-33ded984ff02df26e0faf1d254abd2ea6acc0070.tar.gz
tcl-33ded984ff02df26e0faf1d254abd2ea6acc0070.tar.bz2
Fix indenting
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixSock.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c
index 6286b2f..4767522 100644
--- a/unix/tclUnixSock.c
+++ b/unix/tclUnixSock.c
@@ -1519,15 +1519,15 @@ Tcl_OpenTcpServerEx(
(char *) &reuseaddr, sizeof(reuseaddr));
#ifdef SO_REUSEPORT
- /*
- * Set up to allows multiple sockets on the same host to bind to the same port.
- * The flag can be switched on by setting the lowest bit above the valid maximum port (0xffff).
- */
- if (flags & USE_SOCK_REUSEPORT) {
+ /*
+ * Set up to allows multiple sockets on the same host to bind to the same port.
+ * The flag can be switched on by setting the lowest bit above the valid maximum port (0xffff).
+ */
+ if (flags & USE_SOCK_REUSEPORT) {
int reuseport = 1;
- (void) setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
- (char *) &reuseport, sizeof(reuseport));
- }
+ (void) setsockopt(sock, SOL_SOCKET, SO_REUSEPORT,
+ (char *) &reuseport, sizeof(reuseport));
+ }
#endif
/*