From: Roy Marples Date: Wed, 22 Apr 2020 15:57:40 +0000 (+0100) Subject: privsep: Open the IPV6 ND socket when running IPv6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3aab7bf5a19a0d05cc9f7b3a0e1db30b104942c8;p=thirdparty%2Fdhcpcd.git privsep: Open the IPV6 ND socket when running IPv6 IPv6 RS could be turned off globally --- diff --git a/src/privsep.c b/src/privsep.c index 2b68af2f..09e63216 100644 --- a/src/privsep.c +++ b/src/privsep.c @@ -327,7 +327,7 @@ ps_start(struct dhcpcd_ctx *ctx) /* No point in spawning the generic network listener if we're * not going to use it. */ - if (!(ctx->options & (DHCPCD_MASTER | DHCPCD_IPV6RS))) + if (!(ctx->options & (DHCPCD_MASTER | DHCPCD_IPV6))) goto started; switch (pid = ps_inet_start(ctx)) {