diff options
| author | Roy Marples <roy@marples.name> | 2020-04-22 16:57:40 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2020-04-22 16:57:40 +0100 |
| commit | 3aab7bf5a19a0d05cc9f7b3a0e1db30b104942c8 (patch) | |
| tree | e9092c995ae082c3a7754a14d02d504f5cf71dda /src/privsep.c | |
| parent | 80cce843f46002ef7b82ccf8d5ce8e58b5bb2013 (diff) | |
| download | dhcpcd-3aab7bf5a19a0d05cc9f7b3a0e1db30b104942c8.tar.xz | |
privsep: Open the IPV6 ND socket when running IPv6
IPv6 RS could be turned off globally
Diffstat (limited to 'src/privsep.c')
| -rw-r--r-- | src/privsep.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |
