mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
Fix copy-pasto in CAPFAIL_INCREASE case.
Noticed by: pjd
This commit is contained in:
parent
99afdfe58d
commit
60e45df8ed
1 changed files with 2 additions and 2 deletions
|
|
@ -1603,9 +1603,9 @@ ktrcapfail(struct ktr_cap_fail *ktr)
|
|||
case CAPFAIL_INCREASE:
|
||||
/* requested more capabilities than fd already has */
|
||||
printf("attempt to increase capabilities from ");
|
||||
capname((intmax_t)ktr->cap_needed);
|
||||
printf(" to ");
|
||||
capname((intmax_t)ktr->cap_held);
|
||||
printf(" to ");
|
||||
capname((intmax_t)ktr->cap_needed);
|
||||
break;
|
||||
case CAPFAIL_SYSCALL:
|
||||
/* called restricted syscall */
|
||||
|
|
|
|||
Loading…
Reference in a new issue