Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
James Lowden
OpenLDAP
Commits
fdf6ee50
Commit
fdf6ee50
authored
Sep 11, 2020
by
Howard Chu
Committed by
Quanah Gibson-Mount
Sep 11, 2020
Browse files
ITS#8054 fix etime calculation
Was overlooked in
a0cc1d96
parent
9d48bdd0
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/result.c
View file @
fdf6ee50
...
...
@@ -43,7 +43,7 @@
char timestr[64]; \
(void) gettimeofday( &now, NULL ); \
now.tv_sec -= op->o_time; \
now.tv_usec -= op->o_t
incr
; \
now.tv_usec -= op->o_t
usec
; \
if ( now.tv_usec < 0 ) { \
--now.tv_sec; now.tv_usec += 1000000; \
} \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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