From 9e5493752a7edcdc3107239e79f9bc0f13cb63c2 Mon Sep 17 00:00:00 2001 From: Mariusz Zaborski Date: Sun, 4 Nov 2018 18:52:59 +0000 Subject: [PATCH] Fix a recusive call introduce in the r340130. --- lib/libcapsicum/capsicum_helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libcapsicum/capsicum_helpers.h b/lib/libcapsicum/capsicum_helpers.h index c94cd867f2e1..d1c46e74f388 100644 --- a/lib/libcapsicum/capsicum_helpers.h +++ b/lib/libcapsicum/capsicum_helpers.h @@ -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);