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
Compare Revisions
8b49710a0cb9ace4657cb03f121beea19992bfbe...2d3e20c5a7e576fe58fe30d9d03e61c1ae40cd1d
Commits (2)
ITS
#9752
accesslog: fix inconsistently normalized minCSN
· ea7932f0
Howard Chu
authored
Nov 19, 2021
and
Quanah Gibson-Mount
committed
Nov 19, 2021
(cherry picked from commit
f476a063
)
ea7932f0
ITS
#9752
· 2d3e20c5
Quanah Gibson-Mount
authored
Nov 19, 2021
2d3e20c5
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
2d3e20c5
...
...
@@ -3,6 +3,7 @@ OpenLDAP 2.5 Change Log
OpenLDAP 2.5.10 Engineering
Fixed libldap to init client socket port (ITS#9743)
Fixed slapo-dynlist compare operation for static groups (ITS#9747)
Fixed slapo-accesslog to fix inconsistently normalized minCSN (ITS#9752)
Documentation
Fixed slapo-accesslog(5) to clarify logoldattr usage (ITS#9749)
...
...
servers/slapd/overlays/accesslog.c
View file @
2d3e20c5
...
...
@@ -740,7 +740,7 @@ accesslog_purge( void *ctx, void *arg )
ldap_pvt_thread_mutex_lock
(
&
li
->
li_log_mutex
);
mod
.
sml_numvals
=
li
->
li_numcsns
;
mod
.
sml_values
=
li
->
li_mincsn
;
mod
.
sml_nvalues
=
NULL
;
mod
.
sml_nvalues
=
li
->
li_mincsn
;
mod
.
sml_desc
=
ad_minCSN
;
mod
.
sml_op
=
LDAP_MOD_REPLACE
;
mod
.
sml_flags
=
SLAP_MOD_INTERNAL
;
...
...