Skip to content

Commit

Permalink
Fix an unused var warning for capsicum for prior
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmarples committed Nov 13, 2023
1 parent 8d12632 commit 6788608
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/privsep.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 6788608

Please sign in to comment.