Don't set IPV6_V6ONLY on OpenBSD

It isn't necessary and runs afoul of pledge(2) restrictions.
This commit is contained in:
Damien Miller 2015-12-09 09:18:45 +11:00
parent da98c11d03
commit d86a3ba7af
1 changed files with 1 additions and 1 deletions

2
misc.c
View File

@ -1110,7 +1110,7 @@ unix_listener(const char *path, int backlog, int unlink_first)
void
sock_set_v6only(int s)
{
#ifdef IPV6_V6ONLY
#if defined(IPV6_V6ONLY) && !defined(__OpenBSD__)
int on = 1;
debug3("%s: set socket %d IPV6_V6ONLY", __func__, s);