Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
19fa80f6
Commit
19fa80f6
authored
Feb 14, 2008
by
Quanah Gibson-Mount
Browse files
ITS
#5379
parent
1b540af9
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
19fa80f6
...
...
@@ -28,6 +28,7 @@ OpenLDAP 2.4.8 Engineering
Fixed slapd sasl with CLEARTEXT (ITS#5368)
Fixed slapd str2entry with no attrs (ITS#5308)
Fixed slapd TLSVerifyClient default (ITS#5360)
Fixed slapd HAVE_TLS dependency (ITS#5379)
Fixed slapd delta-syncrepl refresh mode (ITS#5376)
Fixed slapd-bdb idlcache on adds (ITS#5086)
Fixed slapd-bdb crash with modrdn (ITS#5358)
...
...
servers/slapd/config.c
View file @
19fa80f6
...
...
@@ -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
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment