Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joe Martin
OpenLDAP
Commits
19fa80f6
Commit
19fa80f6
authored
17 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
ITS#5379
parent
1b540af9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+1
-0
1 addition, 0 deletions
CHANGES
servers/slapd/config.c
+2
-2
2 additions, 2 deletions
servers/slapd/config.c
with
3 additions
and
2 deletions
CHANGES
+
1
−
0
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)
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/config.c
+
2
−
2
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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment