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)
3232 var authPluginDataLength = reader . ReadByte ( ) ;
3333 reader . Offset += 6 ;
3434
35- long extendedCapabilites = reader . ReadInt32 ( ) ;
35+ long extendedCapabilities = reader . ReadInt32 ( ) ;
3636 if ( ( protocolCapabilities & ProtocolCapabilities . LongPassword ) == 0 )
3737 {
3838 // 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 ) ;
4040 }
4141
4242 if ( ( protocolCapabilities & ProtocolCapabilities . SecureConnection ) != 0 )
You can’t perform that action at this time.
0 commit comments