File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/MySqlConnector/Protocol/Payloads Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ public static InitialHandshakePayload Create(ReadOnlySpan<byte> span)
32
32
var authPluginDataLength = reader . ReadByte ( ) ;
33
33
reader . Offset += 6 ;
34
34
35
- long extendedCapabilites = reader . ReadInt32 ( ) ;
35
+ long extendedCapabilities = reader . ReadInt32 ( ) ;
36
36
if ( ( protocolCapabilities & ProtocolCapabilities . LongPassword ) == 0 )
37
37
{
38
38
// MariaDB clears the CLIENT_LONG_PASSWORD flag to indicate it's not a MySQL Server
39
- protocolCapabilities |= ( ProtocolCapabilities ) ( extendedCapabilites << 32 ) ;
39
+ protocolCapabilities |= ( ProtocolCapabilities ) ( extendedCapabilities << 32 ) ;
40
40
}
41
41
42
42
if ( ( protocolCapabilities & ProtocolCapabilities . SecureConnection ) != 0 )
You can’t perform that action at this time.
0 commit comments