From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web09.4039.1575466509083993468 for ; Wed, 04 Dec 2019 05:35:09 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: linux.intel.com, ip: 192.55.52.151, mailfrom: maciej.rabeda@linux.intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Dec 2019 05:35:08 -0800 X-IronPort-AV: E=Sophos;i="5.69,277,1571727600"; d="scan'208";a="201401790" Received: from mrabeda-mobl.ger.corp.intel.com (HELO [10.102.8.43]) ([10.102.8.43]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 04 Dec 2019 05:35:06 -0800 Subject: Re: [edk2-devel] [PATCH 35/79] NetworkPkg/DnsDxe: Fix a typo To: devel@edk2.groups.io, philmd@redhat.com Cc: =?UTF-8?Q?Antoine_C=c5=93ur?= , Jiaxin Wu , Siyuan Fu , Maciej Rabeda References: <20191203161602.15969-1-philmd@redhat.com> <20191203161602.15969-36-philmd@redhat.com> From: "Maciej Rabeda" Message-ID: Date: Wed, 4 Dec 2019 14:35:04 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 MIME-Version: 1.0 In-Reply-To: <20191203161602.15969-36-philmd@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: pl Reviewed-by: Maciej Rabeda On 03-Dec-19 17:15, Philippe Mathieu-Daudé wrote: > 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 = Length; > > // > - // Check whether the remaining packet length is avaiable or not. > + // Check whether the remaining packet length is available or not. > // > if (RemainingLength <= sizeof (DNS_HEADER)) { > *Completed = FALSE; > @@ -1217,7 +1217,7 @@ ParseDnsResponse ( > QueryNameLen = (UINT32) AsciiStrLen (QueryName) + 1; > > // > - // Check whether the remaining packet length is avaiable or not. > + // Check whether the remaining packet length is available or not. > // > if (RemainingLength <= QueryNameLen + sizeof (DNS_QUERY_SECTION)) { > *Completed = 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 <= sizeof (UINT16) + sizeof (DNS_ANSWER_SECTION)) { > *Completed = FALSE; > @@ -1404,7 +1404,7 @@ ParseDnsResponse ( > AnswerSection->DataLength = NTOHS (AnswerSection->DataLength); > > // > - // 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 = FALSE;