summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-08-31 19:29:47 +0200
committerSlávek Banko <slavek.banko@axis.cz>2019-08-31 19:29:47 +0200
commitaae0287741331748bf0c89cbe4db025bb8cf3af2 (patch)
tree411acb5cde871704ad33f596ee159f3dce149128
parent4f528c3bd24f9bd833a559429a7960157322e445 (diff)
downloadtqt3-aae0287741331748bf0c89cbe4db025bb8cf3af2.tar.gz
tqt3-aae0287741331748bf0c89cbe4db025bb8cf3af2.zip
Fix FTBFS from prior commit.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--src/sql/drivers/mysql/qsql_mysql.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sql/drivers/mysql/qsql_mysql.cpp b/src/sql/drivers/mysql/qsql_mysql.cpp
index 48337f88..131e7623 100644
--- a/src/sql/drivers/mysql/qsql_mysql.cpp
+++ b/src/sql/drivers/mysql/qsql_mysql.cpp
@@ -542,11 +542,11 @@ bool TQMYSQLDriver::open( const TQString& db,
if (clientOptionFlags & CLIENT_SSL) {
mysql_ssl_set(d->mysql,
- ssl_key.isEmpty()? static_cast<const char *>(0):ssl_key.local8Bit(),
- ssl_cert.isEmpty()? static_cast<const char *>(0):ssl_cert.local8Bit(),
- ssl_ca.isEmpty()? static_cast<const char *>(0):ssl_ca.local8Bit(),
- ssl_capath.isEmpty()? static_cast<const char *>(0):ssl_capath.local8Bit(),
- ssl_cipher.isEmpty()? static_cast<const char *>(0):ssl_cipher.local8Bit()
+ ssl_key.isEmpty()? static_cast<const char *>(0):ssl_key.local8Bit().data(),
+ ssl_cert.isEmpty()? static_cast<const char *>(0):ssl_cert.local8Bit().data(),
+ ssl_ca.isEmpty()? static_cast<const char *>(0):ssl_ca.local8Bit().data(),
+ ssl_capath.isEmpty()? static_cast<const char *>(0):ssl_capath.local8Bit().data(),
+ ssl_cipher.isEmpty()? static_cast<const char *>(0):ssl_cipher.local8Bit().data()
);
}
mysql_options(d->mysql, MYSQL_OPT_RECONNECT, &reconnect);