Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
af9a2b05
Commit
af9a2b05
authored
Jun 10, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6541
parent
abb28011
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
af9a2b05
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.23 Engineering
Fixed liblutil off-by-one with delta (ITS#6541)
Fixed slapd syncrepl rid logging (ITS#6533)
Fixed contrib/nssov network.c missing patch (ITS#6562)
Documentation
...
...
libraries/liblutil/utils.c
View file @
af9a2b05
...
...
@@ -147,7 +147,7 @@ size_t lutil_localtime( char *s, size_t smax, const struct tm *tm, long delta )
snprintf
(
p
,
smax
-
15
,
"%02ld%02ld"
,
delta
/
3600
,
(
delta
%
3600
)
/
60
);
return
ret
+
5
;
return
ret
+
4
;
}
int
lutil_tm2time
(
struct
lutil_tm
*
tm
,
struct
lutil_timet
*
tt
)
...
...
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