diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-22 11:24:48 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-22 11:24:48 (GMT) |
commit | 32f810fc3b6dc0ff270d295e623bacb4d766522c (patch) | |
tree | fb801beba2c6366d2815b95ac410cd6a9c5ceb34 /unix/tclUnixSock.c | |
parent | 6989a199e7390fd525b1b42b4a2afba1e5964252 (diff) | |
download | tcl-32f810fc3b6dc0ff270d295e623bacb4d766522c.zip tcl-32f810fc3b6dc0ff270d295e623bacb4d766522c.tar.gz tcl-32f810fc3b6dc0ff270d295e623bacb4d766522c.tar.bz2 |
Fix indenting
Diffstat (limited to 'unix/tclUnixSock.c')
-rw-r--r-- | unix/tclUnixSock.c | 16 |
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 /* |