From owner-svn-src-all@FreeBSD.ORG Thu Sep 19 10:56:37 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9CBBD91; Thu, 19 Sep 2013 10:56:37 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6F837254A; Thu, 19 Sep 2013 10:56:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8JAubWs099131; Thu, 19 Sep 2013 10:56:37 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8JAubVV099129; Thu, 19 Sep 2013 10:56:37 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201309191056.r8JAubVV099129@svn.freebsd.org> From: Bryan Drewery Date: Thu, 19 Sep 2013 10:56:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255699 - in head: share/man/man4 usr.bin/procstat X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Sep 2013 10:56:37 -0000 Author: bdrewery (ports committer) Date: Thu Sep 19 10:56:36 2013 New Revision: 255699 URL: http://svnweb.freebsd.org/changeset/base/255699 Log: cap_new(2) and cap_getrights2) were replaced with cap_rights_limit(2) and cap_rights_get(2) in r247602 Reviewed by: pjd Approved by: gjb Approved by: re (rodrigc) Modified: head/share/man/man4/capsicum.4 head/usr.bin/procstat/procstat.1 Modified: head/share/man/man4/capsicum.4 ============================================================================== --- head/share/man/man4/capsicum.4 Thu Sep 19 08:04:50 2013 (r255698) +++ head/share/man/man4/capsicum.4 Thu Sep 19 10:56:36 2013 (r255699) @@ -26,7 +26,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 21, 2013 +.Dd September 17, 2013 .Dt CAPSICUM 4 .Os .Sh NAME @@ -62,7 +62,7 @@ File descriptors that wrap other file de be called on them; for example, a file descriptor returned by .Xr open 2 may be refined using -.Xr cap_new 2 +.Xr cap_rights_limit 2 so that only .Xr read 2 and @@ -89,8 +89,8 @@ associated with file descriptors; descri .Sh SEE ALSO .Xr cap_enter 2 , .Xr cap_getmode 2 , -.Xr cap_getrights 2 , -.Xr cap_new 2 , +.Xr cap_rights_get 2 , +.Xr cap_rights_limit 2 , .Xr fchmod 2 , .Xr open 2 , .Xr pdfork 2 , Modified: head/usr.bin/procstat/procstat.1 ============================================================================== --- head/usr.bin/procstat/procstat.1 Thu Sep 19 08:04:50 2013 (r255698) +++ head/usr.bin/procstat/procstat.1 Thu Sep 19 10:56:36 2013 (r255699) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 20, 2013 +.Dd September 17, 2013 .Dt PROCSTAT 1 .Os .Sh NAME @@ -234,7 +234,7 @@ If the flag is specified, the vnode type, reference count, and offset fields will be omitted, and a new capabilities field will be included listing capabilities, as described in -.Xr cap_new 2 , +.Xr cap_rights_limit 2 , present for each capability descriptor. .Ss Signal Disposition Information Display signal pending and disposition for a process: @@ -449,7 +449,7 @@ grows up (bottom-up stack) .Xr ps 1 , .Xr sockstat 1 , .Xr cap_enter 2 , -.Xr cap_new 2 , +.Xr cap_rights_limit 2 , .Xr ddb 4 , .Xr stack 9 .Sh AUTHORS