Skip to content

Commit

Permalink
[CONC-654, MDEV-31585] CLIENT_CAN_SSL_V2 capability bit should not be…
Browse files Browse the repository at this point in the history
… MariaDB-specific

MySQL is also certainly affected, and we will likely try to get them
to follow the fixes for these TLS vulnerabilities as well, so the
SSL_V2 capability bit should not be MariaDB-specific.

All new code of the whole pull request, including one or several files
that are either new files or modified ones, are contributed under the
BSD-new license. I am contributing on behalf of my employer Amazon Web
Services, Inc.
  • Loading branch information
dlenski committed Jul 11, 2023
1 parent a1239c0 commit e90ef67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/mysql_com.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ enum enum_indicator_type
* after the TLS handshake.
*
*/
#define CLIENT_CAN_SSL_V2 (1ULL << 37)
#define CLIENT_CAN_SSL_V2 (1ULL << 28)

#define CLIENT_PROGRESS_OBSOLETE (1ULL << 29)
#define CLIENT_SSL_VERIFY_SERVER_CERT (1ULL << 30)
Expand Down
2 changes: 1 addition & 1 deletion libmariadb

0 comments on commit e90ef67

Please sign in to comment.