style: macros indentations (again)

main
Tom MTT. 1 year ago
parent 46d7d4bff3
commit 43be904636

@ -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 */

@ -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...");

Loading…
Cancel
Save