diff options
| author | Roy Marples <roy@marples.name> | 2020-05-19 16:37:10 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2020-05-19 16:37:10 +0100 |
| commit | 28431b6c769baa5aa1e4e08472ecbb3a2f27ca5f (patch) | |
| tree | fc5d2091c875a365427eebfbab2e2afdb115b8b2 /src/if-bsd.c | |
| parent | c5445ce8235c153f4f184067ef58249f598d8629 (diff) | |
| download | dhcpcd-28431b6c769baa5aa1e4e08472ecbb3a2f27ca5f.tar.xz | |
Fix compile for prior on NetBSD
Diffstat (limited to 'src/if-bsd.c')
| -rw-r--r-- | src/if-bsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if-bsd.c b/src/if-bsd.c index 2d9bbb2a..981f9b2a 100644 --- a/src/if-bsd.c +++ b/src/if-bsd.c @@ -175,7 +175,7 @@ if_opensockets_os(struct dhcpcd_ctx *ctx) #ifdef SO_RERROR n = 1; if (setsockopt(ctx->link_fd, SOL_SOCKET, SO_RERROR, &n,sizeof(n)) == -1) - goto errexit; + logerr("%s: SO_RERROR", __func__); #endif /* Ignore our own route(4) messages. |
