From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O9GBG-0005qt-GU for qemu-devel@nongnu.org; Tue, 04 May 2010 07:20:50 -0400 Received: from [140.186.70.92] (port=49242 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O9GBE-0005oZ-PA for qemu-devel@nongnu.org; Tue, 04 May 2010 07:20:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O9GB3-0003Mn-Qs for qemu-devel@nongnu.org; Tue, 04 May 2010 07:20:48 -0400 Received: from oxygen.pond.sub.org ([213.239.205.148]:39839) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O9GB3-0003La-Io for qemu-devel@nongnu.org; Tue, 04 May 2010 07:20:37 -0400 Received: from blackfin.pond.sub.org (pD9E39049.dip.t-dialin.net [217.227.144.73]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 6AC08276DC7 for ; Tue, 4 May 2010 13:20:35 +0200 (CEST) From: Markus Armbruster Date: Tue, 4 May 2010 13:20:31 +0200 Message-Id: <1272972033-31475-3-git-send-email-armbru@redhat.com> In-Reply-To: <1272972033-31475-1-git-send-email-armbru@redhat.com> References: <1272972033-31475-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH 2/4] doc: Fix acl monitor command documentation List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Commit 15dfcd45 added acl_add and acl_reset, but fat-fingered their documentation to read acl_allow and acl_remove. Signed-off-by: Markus Armbruster --- qemu-monitor.hx | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/qemu-monitor.hx b/qemu-monitor.hx index 21aeb6b..bf47ae0 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -1063,8 +1063,8 @@ ETEXI }, STEXI -@item acl_allow @var{aclname} @var{match} @code{allow|deny} [@var{index}] -@findex acl_allow +@item acl_add @var{aclname} @var{match} @code{allow|deny} [@var{index}] +@findex acl_add Add a match rule to the access control list, allowing or denying access. The match will normally be an exact username or x509 distinguished name, but can optionally include wildcard globs. eg @code{*@@EXAMPLE.COM} to @@ -1096,7 +1096,8 @@ ETEXI }, STEXI -@item acl_remove @var{aclname} +@item acl_reset @var{aclname} +@findex acl_reset Remove all matches from the access control list, and set the default policy back to @code{deny}. ETEXI -- 1.6.6.1