Skip to content
Snippets Groups Projects
Commit b73915d3 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix build without TLS

parent afabf444
No related branches found
No related tags found
No related merge requests found
......@@ -1255,12 +1255,14 @@ slap_tls_get_config( LDAP *ld, int opt, char **val )
*val = NULL;
switch( opt ) {
#ifdef HAVE_TLS
case LDAP_OPT_X_TLS_CRLCHECK:
keys = crlkeys;
break;
case LDAP_OPT_X_TLS_REQUIRE_CERT:
keys = vfykeys;
break;
#endif
default:
return -1;
}
......@@ -1289,7 +1291,10 @@ bindconf_tls_parse( const char *word, slap_bindconf *bc )
int
bindconf_tls_unparse( slap_bindconf *bc, struct berval *bv )
{
#ifdef HAVE_TLS
return slap_cf_aux_table_unparse( bc, bv, aux_TLS );
#endif
return -1;
}
int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment