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 /cert-updater | |
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 'cert-updater')
-rw-r--r-- | cert-updater/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cert-updater/main.cpp b/cert-updater/main.cpp index c4be86d..8a490f9 100644 --- a/cert-updater/main.cpp +++ b/cert-updater/main.cpp @@ -196,7 +196,7 @@ int main(int argc, char *argv[]) LDAPCredentials* credentials = new LDAPCredentials; credentials->username = "cn=admin," + basedn; m_systemconfig->setGroup("Replication"); - credentials->password = m_systemconfig->readEntry("Password"); + credentials->password = m_systemconfig->readEntry("Password").utf8(); m_systemconfig->setGroup(NULL); credentials->realm = realmname; LDAPManager* ldap_mgr = new LDAPManager(realmname, TQString("ldaps://%1/").arg(realmCAMaster), credentials); |