Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
845e0073
Commit
845e0073
authored
Oct 21, 1998
by
Kurt Zeilenga
Browse files
more localtime -> gmtime changes
parent
68a473e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/monitor.c
View file @
845e0073
...
...
@@ -162,10 +162,11 @@ monitor_info( Connection *conn, Operation *op )
attr_merge
(
e
,
"bytessent"
,
vals
);
pthread_mutex_lock
(
&
currenttime_mutex
);
ltm
=
localtime
(
&
currenttime
);
#ifdef LDAP_Y2K
ltm
=
gmtime
(
&
currenttime
);
strftime
(
buf
,
sizeof
(
buf
),
"%Y%m%d%H%M%SZ"
,
ltm
);
#else
ltm
=
localtime
(
&
currenttime
);
strftime
(
buf
,
sizeof
(
buf
),
"%y%m%d%H%M%SZ"
,
ltm
);
#endif
pthread_mutex_unlock
(
&
currenttime_mutex
);
...
...
@@ -174,10 +175,11 @@ monitor_info( Connection *conn, Operation *op )
attr_merge
(
e
,
"currenttime"
,
vals
);
pthread_mutex_lock
(
&
currenttime_mutex
);
ltm
=
localtime
(
&
starttime
);
#ifdef LDAP_Y2K
ltm
=
gmtime
(
&
starttime
);
strftime
(
buf
,
sizeof
(
buf
),
"%Y%m%d%H%M%SZ"
,
ltm
);
#else
ltm
=
localtime
(
&
starttime
);
strftime
(
buf
,
sizeof
(
buf
),
"%y%m%d%H%M%SZ"
,
ltm
);
#endif
pthread_mutex_unlock
(
&
currenttime_mutex
);
...
...
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