style: macros indentations (again)
This commit is contained in:
parent
46d7d4bff3
commit
43be904636
2 changed files with 5 additions and 6 deletions
|
@ -294,9 +294,9 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
/* OpenBSD-only security measures */
|
||||
#ifdef __OpenBSD__
|
||||
#ifdef __OpenBSD__
|
||||
pledge("proc stdio rpath wpath cpath inet", "stdio rpath wpath cpath inet");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
/* create a thread pool for incoming connections */
|
||||
|
|
7
server.c
7
server.c
|
@ -104,19 +104,18 @@ int initialize_server()
|
|||
return -1;
|
||||
|
||||
/* Enable dual-stack mode on supported platforms */
|
||||
#ifndef __OpenBSD__
|
||||
#ifndef __OpenBSD__
|
||||
verbose(3, " IPV6_V6ONLY...");
|
||||
if (setsockopt(server, IPPROTO_IPV6, IPV6_V6ONLY, &ipv6_only, sizeof(ipv6_only)) < 0)
|
||||
return -1;
|
||||
|
||||
#else
|
||||
#else
|
||||
if (ipv6_only == 0) {
|
||||
puts("");
|
||||
syslog(LOG_WARNING, "dual-stack mode is disabled on OpenBSD.");
|
||||
syslog(LOG_WARNING, "feuille will only listen on the `::' IPv6 address.");
|
||||
puts("");
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* bind address and port */
|
||||
verbose(3, "binding address on the socket...");
|
||||
|
|
Reference in a new issue