]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Fix an unused var warning for capsicum for prior
authorRoy Marples <roy@marples.name>
Mon, 13 Nov 2023 16:05:04 +0000 (16:05 +0000)
committerRoy Marples <roy@marples.name>
Mon, 13 Nov 2023 16:05:04 +0000 (16:05 +0000)
src/privsep.c

index 2decb8b8bc3ab84e76cf1df60adec0eee179894b..4cca12ee379e3bba2adfd83c75448553b8313d73 100644 (file)
@@ -299,7 +299,7 @@ ps_rights_limit_fdpair(int fd[])
 }
 
 static int
-ps_rights_limit_stdio(struct dhcpcd_ctx *ctx)
+ps_rights_limit_stdio()
 {
        const int iebadf = CAPH_IGNORE_EBADF;
        int error = 0;
@@ -452,7 +452,7 @@ ps_startprocess(struct ps_process *psp,
                        ctx->ps_log_root_fd = -1;
                }
 #ifdef PRIVSEP_RIGHTS
-               if (ps_rights_limit_stdio(ctx) == -1) {
+               if (ps_rights_limit_stdio() == -1) {
                        logerr("ps_rights_limit_stdio");
                        goto errexit;
                }
@@ -666,7 +666,7 @@ ps_managersandbox(struct dhcpcd_ctx *ctx, const char *_pledge)
 #ifdef PRIVSEP_RIGHTS
        if ((ctx->pf_inet_fd != -1 &&
            ps_rights_limit_ioctl(ctx->pf_inet_fd) == -1) ||
-            ps_rights_limit_stdio(ctx) == -1)
+            ps_rights_limit_stdio() == -1)
        {
                logerr("%s: cap_rights_limit", __func__);
                return -1;