mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 18:49:34 -05:00
Mark a few error strings
This commit is contained in:
parent
d263297d76
commit
cfd9449374
1 changed files with 4 additions and 2 deletions
|
|
@ -1102,7 +1102,8 @@ ldap_pvt_tls_check_hostname( LDAP *ld, void *s, const char *name_in )
|
|||
"TLS: unable to get common name from peer certificate.\n",
|
||||
0, 0, 0 );
|
||||
#endif
|
||||
ld->ld_error = LDAP_STRDUP("TLS: unable to get CN from peer certificate");
|
||||
ld->ld_error = LDAP_STRDUP(
|
||||
_("TLS: unable to get CN from peer certificate"));
|
||||
|
||||
} else if (strcasecmp(name, buf)) {
|
||||
#ifdef NEW_LOGGING
|
||||
|
|
@ -1115,7 +1116,8 @@ ldap_pvt_tls_check_hostname( LDAP *ld, void *s, const char *name_in )
|
|||
name, buf, 0 );
|
||||
#endif
|
||||
ret = LDAP_CONNECT_ERROR;
|
||||
ld->ld_error = LDAP_STRDUP("TLS: hostname does not match CN in peer certificate");
|
||||
ld->ld_error = LDAP_STRDUP(
|
||||
_("TLS: hostname does not match CN in peer certificate"));
|
||||
|
||||
} else {
|
||||
ret = LDAP_SUCCESS;
|
||||
|
|
|
|||
Loading…
Reference in a new issue