From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.120]) by mx.groups.io with SMTP id smtpd.web09.2022.1578044438634583770 for ; Fri, 03 Jan 2020 01:40:38 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=OgSwej6K; spf=pass (domain: redhat.com, ip: 205.139.110.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1578044437; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=D7XdF/RvAB7l++8Q+S2WDFlCyZErVMYW1UjLq06III8=; b=OgSwej6KgGTuIlmkPa4EYoEn/7Og5jUQB+VImERWCZ3xwPwadqYWKpzqg2c0iMFbZ0g67K tFuL80j91xSq85n3mXKsAvRvbhoXp9AZlafxvw3B6odMeX+7431DVvBuqdSAHsjLPHAqb+ T1bR7a2L/xdE6EW+cJvB641ofNFx/5w= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-334-YIrLvewzN0uSMMGflST9nA-1; Fri, 03 Jan 2020 04:40:36 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C1EAE1854335; Fri, 3 Jan 2020 09:40:35 +0000 (UTC) Received: from x1w.redhat.com (ovpn-116-190.ams2.redhat.com [10.36.116.190]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2C13760BF7; Fri, 3 Jan 2020 09:40:33 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Philippe Mathieu-Daude , Jiaxin Wu , Siyuan Fu , Maciej Rabeda Subject: [PATCH v2 36/78] NetworkPkg/HttpBootDxe: Fix a typo in variable name Date: Fri, 3 Jan 2020 10:07:30 +0100 Message-Id: <20200103090812.10592-37-philmd@redhat.com> In-Reply-To: <20200103090812.10592-1-philmd@redhat.com> References: <20200103090812.10592-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: YIrLvewzN0uSMMGflST9nA-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Correctly write 'Initialized'. Cc: Jiaxin Wu Cc: Siyuan Fu Cc: Maciej Rabeda Reviewed-by: Maciej Rabeda Signed-off-by: Philippe Mathieu-Daude --- NetworkPkg/HttpBootDxe/HttpBootConfig.h | 2 +- NetworkPkg/HttpBootDxe/HttpBootConfig.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NetworkPkg/HttpBootDxe/HttpBootConfig.h b/NetworkPkg/HttpBootD= xe/HttpBootConfig.h index ce2116e248b5..84eab425b04f 100644 --- a/NetworkPkg/HttpBootDxe/HttpBootConfig.h +++ b/NetworkPkg/HttpBootDxe/HttpBootConfig.h @@ -32,7 +32,7 @@ extern UINT8 HttpBootConfigV= frBin[]; =20 struct _HTTP_BOOT_FORM_CALLBACK_INFO { UINT32 Signature; - BOOLEAN Initilized; + BOOLEAN Initialized; EFI_HANDLE ChildHandle; EFI_DEVICE_PATH_PROTOCOL *HiiVendorDevicePath; EFI_HII_HANDLE RegisteredHandle; diff --git a/NetworkPkg/HttpBootDxe/HttpBootConfig.c b/NetworkPkg/HttpBootD= xe/HttpBootConfig.c index 245bd49a621a..646c907b1215 100644 --- a/NetworkPkg/HttpBootDxe/HttpBootConfig.c +++ b/NetworkPkg/HttpBootDxe/HttpBootConfig.c @@ -552,7 +552,7 @@ HttpBootConfigFormInit ( =20 CallbackInfo =3D &Private->CallbackInfo; =20 - if (CallbackInfo->Initilized) { + if (CallbackInfo->Initialized) { return EFI_SUCCESS; } =20 @@ -632,7 +632,7 @@ HttpBootConfigFormInit ( FreePool (MacString); FreePool (OldMenuString); =20 - CallbackInfo->Initilized =3D TRUE; + CallbackInfo->Initialized =3D TRUE; return EFI_SUCCESS; } =20 --=20 2.21.0