Skip to content

Commit

Permalink
Update samples/mbedtls/06-webclient
Browse files Browse the repository at this point in the history
The table headers on the scanned website have slightly changed.
  • Loading branch information
rsta2 committed May 23, 2023
1 parent 0a1eba5 commit 826a719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/mbedtls/06-webclient/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ boolean CKernel::ParseDocument (const char *pDocument)
case 1: // find header above table
if ( Item == HtmlItemText
&& ( !(nBoardRevision & (1 << 23))
&& ItemText.Compare ("Old-style Revision Codes") == 0
&& ItemText.Compare ("Old-style revision codes") == 0
|| (nBoardRevision & (1 << 23))
&& ItemText.Compare ("New-style Revision Codes in Use") == 0))
&& ItemText.Compare ("New-style revision codes in use") == 0))
{
nState = 2;
}
Expand Down

0 comments on commit 826a719

Please sign in to comment.