diff --git a/monitor.c b/monitor.c index 4479e0a03..2c9254182 100644 --- a/monitor.c +++ b/monitor.c @@ -1853,13 +1853,8 @@ mm_init_compression(struct mm_master *mm) static void monitor_socketpair(int *pair) { -#ifdef HAVE_SOCKETPAIR if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1) fatal("%s: socketpair", __func__); -#else - fatal("%s: UsePrivilegeSeparation=yes not supported", - __func__); -#endif FD_CLOSEONEXEC(pair[0]); FD_CLOSEONEXEC(pair[1]); }