From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.61]) by mx.groups.io with SMTP id smtpd.web11.8443.1575389910628968878 for ; Tue, 03 Dec 2019 08:18:30 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=cgqHfK0w; spf=pass (domain: redhat.com, ip: 205.139.110.61, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1575389909; 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=YBbVgG3CYM7zbtrtUwmLRccUqA404Kc0KLKkhev1TxI=; b=cgqHfK0wOpg8stxn28iK1In+YCsS05mhUL5JISz7Klf23C4DTal+CfBO5Y1rV7HvsIBESu 7SlPqNvCUvtlCUmRbhYDbSybGqIZ3robML1rqJxjgwwW9wlcdlpuKvMOzVHWlTgJIKqsGs jA7PQXyCxPiXzA8dzmS20ZWDDqNzZMo= 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-148-TtL3mOYzOZmFF8RqVRof0Q-1; Tue, 03 Dec 2019 11:18:28 -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 C0F6D18AAFA1; Tue, 3 Dec 2019 16:18:27 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-86.brq.redhat.com [10.40.204.86]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 89A4360C63; Tue, 3 Dec 2019 16:18:25 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Philippe Mathieu-Daude , =?UTF-8?q?Antoine=20C=C5=93ur?= , Jiaxin Wu , Siyuan Fu , Maciej Rabeda Subject: [PATCH 38/79] NetworkPkg/HttpBootDxe: Fix a typo in variable name Date: Tue, 3 Dec 2019 17:15:21 +0100 Message-Id: <20191203161602.15969-39-philmd@redhat.com> In-Reply-To: <20191203161602.15969-1-philmd@redhat.com> References: <20191203161602.15969-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: TtL3mOYzOZmFF8RqVRof0Q-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 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