From: Roy Marples Date: Sun, 10 May 2020 09:11:46 +0000 (+0100) Subject: Fix compile error for non capsicum X-Git-Tag: v9.1.0~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c37720e0403ea79278d503ef3c3d1963d9996a4c;p=thirdparty%2Fdhcpcd.git Fix compile error for non capsicum --- 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; }