svn commit: r340134 - head/lib/libcapsicum

Mariusz Zaborski oshogbo at FreeBSD.org
Sun Nov 4 18:53:00 UTC 2018


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);


More information about the svn-src-all mailing list