|
Bugzilla – Full Text Bug Listing |
| Summary: | TLS Options weirdness in llibldap/libldapcpp | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE 11.4 | Reporter: | Ralf Haferkamp <ralf> |
| Component: | Other | Assignee: | Ralf Haferkamp <ralf> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | jsuchome |
| Version: | Factory | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | Development | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Bug Depends on: | |||
| Bug Blocks: | 684395 | ||
submitted to factory This is an autogenerated message for OBS integration: This bug (683826) was mentioned in https://build.opensuse.org/request/show/65742 |
The following does not work as expected: int main() { LDAPConnection ldap("ldap://localhost"); try { ldap.start_tls(); } catch ( LDAPException(e)) { std::cerr << e << std::endl; } TlsOptions tls; tls.setOption (TlsOptions::CACERTDIR, "/etc/openldap/cacerts/"); LDAPConnection ldap2("ldap://localhost"); try { ldap2.start_tls(); } catch ( LDAPException(e)) { std::cerr << e << std::endl; } }