diff options
author | cmiller@zippy.cornsilk.net <> | 2006-08-25 11:54:33 -0400 |
---|---|---|
committer | cmiller@zippy.cornsilk.net <> | 2006-08-25 11:54:33 -0400 |
commit | 89d759b93e3975e5d5e1c5cf9b901c01b9e80ff7 (patch) | |
tree | 15f553bfc1ea8f261a75f1af5aaadd93bfced0e9 /include/mysql.h | |
parent | 1917a99270248262f7420fc61a6f1f50bf03b9a6 (diff) | |
download | mariadb-git-89d759b93e3975e5d5e1c5cf9b901c01b9e80ff7.tar.gz |
Bug#21543: 5.0.24 breaks ABI compatibility for python bindings: \
InterfaceError on connect
Removed the bool flag from the st_mysql_options struct, since it adds
another word in size to the memory size and shifts member memory locations
down, both of which break binary-interface compatibility.
Instead, use a flag, 2**30, in the client_options bit-field to represent
that the client should check the SSL certificate of the server.
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h index 3a71e47f414..b2efa2ffd3b 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -165,7 +165,6 @@ struct st_mysql_options { char *ssl_ca; /* PEM CA file */ char *ssl_capath; /* PEM directory of CA-s? */ char *ssl_cipher; /* cipher to use */ - my_bool ssl_verify_server_cert; /* if to verify server cert */ char *shared_memory_base_name; unsigned long max_allowed_packet; my_bool use_ssl; /* if to use SSL or not */ |