From nobody Sun Nov 24 12:15:48 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1722867150644782.0092764346917; Mon, 5 Aug 2024 07:12:30 -0700 (PDT) Received: from list by lists.xenproject.org with outflank-mailman.772197.1182628 (Exim 4.92) (envelope-from ) id 1sayRe-0008AX-Tc; Mon, 05 Aug 2024 14:12:18 +0000 Received: by outflank-mailman (output) from mailman id 772197.1182628; Mon, 05 Aug 2024 14:12:18 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1sayRe-0008AQ-RA; Mon, 05 Aug 2024 14:12:18 +0000 Received: by outflank-mailman (input) for mailman id 772197; Mon, 05 Aug 2024 14:12:17 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1sayRd-00089W-Lw for xen-devel@lists.xenproject.org; Mon, 05 Aug 2024 14:12:17 +0000 Received: from sinister.netherworld.org (sinister.netherworld.org [38.100.53.3]) by se1-gles-flk1.inumbo.com (Halon) with ESMTP id b77f6c41-5334-11ef-8776-851b0ebba9a2; Mon, 05 Aug 2024 16:12:15 +0200 (CEST) Received: from decay.netherworld.org (decay.netherworld.org [192.168.6.20]) by sinister.netherworld.org (8.17.1/8.17.1) with ESMTP id 475ECE35020715; Mon, 5 Aug 2024 10:12:14 -0400 Received: from decay.netherworld.org (localhost [127.0.0.1]) by decay.netherworld.org (8.17.1/8.17.1) with ESMTP id 475ECEUE021887; Mon, 5 Aug 2024 10:12:14 -0400 Received: (from mag@localhost) by decay.netherworld.org (8.17.1/8.17.1/Submit) id 475ECDRu021886; Mon, 5 Aug 2024 10:12:13 -0400 X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: b77f6c41-5334-11ef-8776-851b0ebba9a2 From: "John E. Krokes" To: xen-devel@lists.xenproject.org Cc: "John E. Krokes" , Anthony PERARD Subject: [PATCH] Fixed incorrect output in xl's "help" command. Date: Mon, 5 Aug 2024 10:11:59 -0400 Message-Id: <20240805141159.21872-1-mag@netherworld.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1722867151321116600 Content-Type: text/plain; charset="utf-8" In "xl help", the output includes this line: vsnd-list List virtual display devices for a domain This should obviously say "sound devices" instead of "display devices". Signed-off-by: John E. Krokes Acked-by: Anthony PERARD Reviewed-by: Juergen Gross --- tools/xl/xl_cmdtable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xl/xl_cmdtable.c b/tools/xl/xl_cmdtable.c index 42751228c1..53fc22d344 100644 --- a/tools/xl/xl_cmdtable.c +++ b/tools/xl/xl_cmdtable.c @@ -433,7 +433,7 @@ const struct cmd_spec cmd_table[] =3D { }, { "vsnd-list", &main_vsndlist, 0, 0, - "List virtual display devices for a domain", + "List virtual sound devices for a domain", "", }, { "vsnd-detach", --=20 2.39.2