mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-31 14:50:34 +08:00
ITS#9541 fix typo in util-int.c
From 94fbd968263765f0ef0b17867216a2d3f33572a4
This commit is contained in:
parent
7b2c9aed3c
commit
16fcba1e98
@ -298,11 +298,10 @@ ldap_pvt_clock_gettime( int clk_id, struct timespec *tv )
|
||||
/* emulate POSIX gettimeofday */
|
||||
int
|
||||
ldap_pvt_gettimeofday( struct timeval *tv, void *unused )
|
||||
int
|
||||
{
|
||||
struct timespec ts;
|
||||
ldap_pvt_clock_gettime( 0, &ts );
|
||||
tv->tv_sec = ts.tv_spec;
|
||||
tv->tv_sec = ts.tv_sec;
|
||||
tv->tv_usec = ts.tv_nsec / 1000;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user