From: Howard Chu Date: Thu, 14 Feb 2008 11:18:22 +0000 (+0000) Subject: ITS#5379 HAVE_TLS dependency X-Git-Tag: OPENLDAP_REL_ENG_2_4_9~20^2~146 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c8d5bcf0c713a372327a686639da6aaa983570b2;p=openldap ITS#5379 HAVE_TLS dependency --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index b94c02f97c..f2b624fb4e 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -1402,19 +1402,18 @@ slap_cf_aux_table_unparse( void *src, struct berval *bv, slap_cf_aux_table *tab0 int slap_tls_get_config( LDAP *ld, int opt, char **val ) { +#ifdef HAVE_TLS slap_verbmasks *keys; int i, ival; *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; } @@ -1425,6 +1424,7 @@ slap_tls_get_config( LDAP *ld, int opt, char **val ) return 0; } } +#endif return -1; }