diff options
author | Slávek Banko <[email protected]> | 2019-04-07 20:41:32 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-04-07 20:41:32 +0200 |
commit | c9177222da536b05576f268f60896f40cb8a954c (patch) | |
tree | 30cd5256bc14c0094f32fd9659009bb3777514dc /src | |
parent | 9ee976924cf2add4b3ce7cc80d47606dcebf50ea (diff) | |
download | kcmldapcontroller-c9177222da536b05576f268f60896f40cb8a954c.tar.gz kcmldapcontroller-c9177222da536b05576f268f60896f40cb8a954c.zip |
Added controlled conversions to char* instead of automatic ascii conversions.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/ldapcontroller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ldapcontroller.cpp b/src/ldapcontroller.cpp index 9467b61..cff47cc 100644 --- a/src/ldapcontroller.cpp +++ b/src/ldapcontroller.cpp @@ -977,7 +977,7 @@ void LDAPController::save() { // Use the local password for inter-master authentication // All realm controllers in a realm must (obviously) use the same admin/config password! m_systemconfig->setGroup("Replication"); - replicationSettings.syncPassword = m_systemconfig->readEntry("Password"); + replicationSettings.syncPassword = m_systemconfig->readEntry("Password").utf8(); m_systemconfig->setGroup(NULL); // Use the TDE LDAP CA for replication TLS replicationSettings.caCertificateFile = KERBEROS_PKI_PEM_FILE; |