From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from g9t5008.houston.hpe.com (g9t5008.houston.hpe.com [15.241.48.72]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id D775B21A143DA for ; Fri, 9 Jun 2017 10:10:16 -0700 (PDT) Received: from SHAHTA6.americas.hpqcorp.net (unknown [16.214.29.34]) by g9t5008.houston.hpe.com (Postfix) with ESMTP id 5C56F8C; Fri, 9 Jun 2017 17:11:26 +0000 (UTC) From: Tapan Shah To: edk2-devel@lists.01.org Cc: jaben.carsey@intel.com; ruiyu.ni@intel.com, Tapan Shah Date: Fri, 9 Jun 2017 12:11:21 -0500 Message-Id: <1497028281-14992-1-git-send-email-tapandshah@hpe.com> X-Mailer: git-send-email 1.9.5.msysgit.0 Subject: [PATCH] ShellPkg: Fix typo errors in ifconfig help output X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2017 17:10:17 -0000 Found few instances where IPv4 and DHCPv4 spelled incorrectly as IP4 and DHCP4 respectively. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Tapan Shah --- .../UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni b/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni index edadcc5..70c3465 100644 --- a/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni +++ b/ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.uni @@ -2,6 +2,7 @@ // // (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.
// Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
+// (C) Copyright 2017 Hewlett Packard Enterprise Development LP
// This program and the accompanying materials // are licensed and made available under the terms and conditions of the BSD License // which accompanies this distribution. The full text of the license may be found at @@ -157,7 +158,7 @@ " interfaces or the specified interface.\r\n" " 4. Use '-s static ' with \r\n" " static IPv4 address configuration for specified interface.\r\n" -" 5. Use '-s dhcp' for DHCP4 to request the IP4 address\r\n" +" 5. Use '-s dhcp' for DHCPv4 to request the IPv4 address\r\n" " configuration dynamically for specified interface.\r\n" " 6. Use '-s dns ' must under manual policy.\r\n" ".SH EXAMPLES\r\n" @@ -166,7 +167,7 @@ " * To list the configuration for the eth0 interface:\r\n" " fs0:\> ifconfig -l eth0\r\n" " \r\n" -" * To use DHCP4 to request the IPv4 address configuration dynamically for the\r\n" +" * To use DHCPv4 to request the IPv4 address configuration dynamically for the\r\n" " eth0 interface:\r\n" " fs0:\> ifconfig -s eth0 dhcp\r\n" " \r\n" -- 1.9.5.msysgit.0