We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d91fcb6 commit dbf6658Copy full SHA for dbf6658
nanoFramework.System.Net/NetworkInformation/Wireless80211Configuration.cs
@@ -116,8 +116,8 @@ private void ValidateConfiguration()
116
}
117
118
// check password and SSID length
119
- if ((_password.Length >= MaxPasswordLength) ||
120
- (_ssid.Length >= MaxSsidLength))
+ if ((_password.Length > MaxPasswordLength) ||
+ (_ssid.Length > MaxSsidLength))
121
{
122
#pragma warning disable S3928 // OK to not include a meaningful message
123
throw new ArgumentOutOfRangeException();
0 commit comments