mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix a recusive call introduce in the r340130.
This commit is contained in:
parent
9b5dd8ff8b
commit
9e5493752a
1 changed files with 1 additions and 1 deletions
|
|
@ -160,7 +160,7 @@ static __inline int
|
|||
caph_fcntls_limit(int fd, uint32_t fcntlrights)
|
||||
{
|
||||
|
||||
if (caph_fcntls_limit(fd, fcntlrights) < 0 && errno != ENOSYS)
|
||||
if (cap_fcntls_limit(fd, fcntlrights) < 0 && errno != ENOSYS)
|
||||
return (-1);
|
||||
|
||||
return (0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue