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.web10.8259.1575389903973773749 for ; Tue, 03 Dec 2019 08:18:24 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=XZBk0Qi+; 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=1575389903; 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=C0Ai1TmZn8hcGDFMe2m0799ez6Az/v6uh1shrFX97q8=; b=XZBk0Qi++ZMDYXx/9FVvdY/E7k/vVBTTRE0UrOsctC8by7BtjWXZEGMrlJ4J/nP2oAiBxN rl+B0AGdd3guAYIheoFeRS8ihHzD07Z22/17tK7ScLDwQMPXx3Q7YnxQfClh1Zm3syJBSt aIM75mBBn4VbEJbbxy5+pNWzCPY27fM= 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-116-2h5dVs0YNumRYtG20mTLzQ-1; Tue, 03 Dec 2019 11:18:20 -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 BA84010054E3; Tue, 3 Dec 2019 16:18:18 +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 54C0260C80; Tue, 3 Dec 2019 16:18:15 +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 35/79] NetworkPkg/DnsDxe: Fix a typo Date: Tue, 3 Dec 2019 17:15:18 +0100 Message-Id: <20191203161602.15969-36-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: 2h5dVs0YNumRYtG20mTLzQ-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Fix the same typo in various comments. Cc: Jiaxin Wu Cc: Siyuan Fu Cc: Maciej Rabeda Signed-off-by: Philippe Mathieu-Daude --- NetworkPkg/DnsDxe/DnsImpl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NetworkPkg/DnsDxe/DnsImpl.c b/NetworkPkg/DnsDxe/DnsImpl.c index ca4ef506a08a..4c232740be3f 100644 --- a/NetworkPkg/DnsDxe/DnsImpl.c +++ b/NetworkPkg/DnsDxe/DnsImpl.c @@ -1179,7 +1179,7 @@ ParseDnsResponse ( RemainingLength =3D Length; =20 // - // Check whether the remaining packet length is avaiable or not. + // Check whether the remaining packet length is available or not. // if (RemainingLength <=3D sizeof (DNS_HEADER)) { *Completed =3D FALSE; @@ -1217,7 +1217,7 @@ ParseDnsResponse ( QueryNameLen =3D (UINT32) AsciiStrLen (QueryName) + 1; =20 // - // Check whether the remaining packet length is avaiable or not. + // Check whether the remaining packet length is available or not. // if (RemainingLength <=3D QueryNameLen + sizeof (DNS_QUERY_SECTION)) { *Completed =3D FALSE; @@ -1376,7 +1376,7 @@ ParseDnsResponse ( // while (AnswerSectionNum < DnsHeader->AnswersNum) { // - // Check whether the remaining packet length is avaiable or not. + // Check whether the remaining packet length is available or not. // if (RemainingLength <=3D sizeof (UINT16) + sizeof (DNS_ANSWER_SECTION)= ) { *Completed =3D FALSE; @@ -1404,7 +1404,7 @@ ParseDnsResponse ( AnswerSection->DataLength =3D NTOHS (AnswerSection->DataLength); =20 // - // Check whether the remaining packet length is avaiable or not. + // Check whether the remaining packet length is available or not. // if (RemainingLength < AnswerSection->DataLength) { *Completed =3D FALSE; --=20 2.21.0