Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
fc0b1753
Commit
fc0b1753
authored
Jun 03, 2021
by
Howard Chu
Committed by
Quanah Gibson-Mount
Jun 03, 2021
Browse files
ITS#9561 slapd init.c: fix copy/paste error
Added in
629cafc9
for ITS#8707
parent
cb687868
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/init.c
View file @
fc0b1753
...
...
@@ -89,7 +89,7 @@ slap_init( int mode, const char *name )
slap_op_init
();
ldap_pvt_thread_mutex_init
(
&
slapd_init_
cond
);
ldap_pvt_thread_mutex_init
(
&
slapd_init_
mutex
);
ldap_pvt_thread_cond_init
(
&
slapd_init_cond
);
#ifdef SLAPD_MODULES
...
...
@@ -279,7 +279,7 @@ int slap_destroy(void)
}
ldap_pvt_thread_mutex_destroy
(
&
slapd_init_
cond
);
ldap_pvt_thread_mutex_destroy
(
&
slapd_init_
mutex
);
ldap_pvt_thread_cond_destroy
(
&
slapd_init_cond
);
slap_op_destroy
();
...
...
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