https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41862
--- Comment #5 from David Cook <[email protected]> --- Ok I misread 1032074 but now I get it. If you look at dbdimp.h you can see that every SSL macro won't be set because the version number returned by the bad MariaDB client library will be wrong. So we fall through to: #else set_ssl_error(sock, "Enforcing SSL encryption is not supported"); return NULL; #endif Setting mysql_ssl_optional would work because it would turn off ssl_enforce. -- Yeah... I think you are stuck here unless MariaDB change their connector: https://github.com/mariadb-corporation/mariadb-connector-c/pull/219 An alternative would be to switch to using the MySQL client library instead of the MariaDB one. In KTD it looks like we're using MariaDB client but I use the MySQL client myself. -- Definitely a bit of a mess... -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
