Date: Sun, 4 Nov 2018 18:52:59 +0000 (UTC) From: Mariusz Zaborski <oshogbo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r340134 - head/lib/libcapsicum Message-ID: <201811041852.wA4IqxOm094034@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: oshogbo Date: Sun Nov 4 18:52:59 2018 New Revision: 340134 URL: https://svnweb.freebsd.org/changeset/base/340134 Log: Fix a recusive call introduce in the r340130. Modified: head/lib/libcapsicum/capsicum_helpers.h Modified: head/lib/libcapsicum/capsicum_helpers.h ============================================================================== --- head/lib/libcapsicum/capsicum_helpers.h Sun Nov 4 18:24:11 2018 (r340133) +++ head/lib/libcapsicum/capsicum_helpers.h Sun Nov 4 18:52:59 2018 (r340134) @@ -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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811041852.wA4IqxOm094034>