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
f0c3b4b9
Commit
f0c3b4b9
authored
Feb 12, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5370
parent
63f9ff62
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
f0c3b4b9
...
...
@@ -22,6 +22,7 @@ OpenLDAP 2.4.8 Engineering
Fixed slapd NULL printf (ITS#5264)
Fixed slapd NULL set values (ITS#5286)
Fixed slapd segv with SASL/OTP (ITS#5259)
Fixed slapd timestamp race condition (ITS#5370)
Fixed slapd cn=config crash on delete (ITS#5343)
Fixed slapd cn=config global acls (ITS#5352)
Fixed slapd truncated cookie (ITS#5362)
...
...
servers/slapd/operation.c
View file @
f0c3b4b9
...
...
@@ -129,8 +129,8 @@ slap_op_free( Operation *op, void *ctx )
void
slap_op_time
(
time_t
*
t
,
int
*
nop
)
{
*
t
=
slap_get_time
();
ldap_pvt_thread_mutex_lock
(
&
slap_op_mutex
);
*
t
=
slap_get_time
();
if
(
*
t
==
last_time
)
{
*
nop
=
++
last_incr
;
}
else
{
...
...
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