diff options
| author | Roy Marples <roy@marples.name> | 2020-05-10 10:11:46 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2020-05-10 10:11:46 +0100 |
| commit | 7932863863431872ca1279d28911a4b84b2bafa3 (patch) | |
| tree | d0542618a17402ff58f94fb883ad7fdc459e935e | |
| parent | a865f89a17db1f9db312c4f208f301542ee3c660 (diff) | |
| download | dhcpcd-7932863863431872ca1279d28911a4b84b2bafa3.tar.xz | |
Fix compile error for non capsicum
| -rw-r--r-- | src/privsep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/privsep.c b/src/privsep.c index fd0cbd47..bfc8860d 100644 --- a/src/privsep.c +++ b/src/privsep.c @@ -173,6 +173,8 @@ ps_dropprivs(struct dhcpcd_ctx *ctx, unsigned int flags) return -1; } } +#else + UNUSED(flags); #endif return 0; } |
