diff options
author | Timothy Pearson <[email protected]> | 2015-12-29 02:24:10 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-12-29 09:44:06 +0100 |
commit | 0e633d60cfd796c49e3c0b7116a2a4af0167af3d (patch) | |
tree | 9dc79fd4c9b66ce9c16f55ff57313962510d9be4 | |
parent | 0508c123785a554d95acf33f8dcef0d246a865a1 (diff) | |
download | kcmldap-0e633d60cfd796c49e3c0b7116a2a4af0167af3d.tar.gz kcmldap-0e633d60cfd796c49e3c0b7116a2a4af0167af3d.zip |
Fix missing newline in root certificate warningr14.0.3
(cherry picked from commit ca9a0f9a973e6c93e2918826bdaabf27451a7d89)
-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 855324a..969056d 100644 --- a/cert-updater/main.cpp +++ b/cert-updater/main.cpp @@ -87,7 +87,7 @@ int get_certificate_from_server(TQString certificateName, LDAPRealmConfig realmc // Get and install the CA root certificate from LDAP printf("[INFO] Updating certificate %s from LDAP\n", certificateName.ascii()); if (ldap_mgr->getTDECertificate("publicRootCertificate", certificateName, &errorstring) != 0) { - printf("[ERROR] Unable to obtain root certificate for realm %s: %s", realmcfg.name.upper().ascii(), errorstring.ascii()); + printf("[ERROR] Unable to obtain root certificate for realm %s: %s\n", realmcfg.name.upper().ascii(), errorstring.ascii()); retcode = 1; } |