ITS#9541 fix typo in util-int.c

From 94fbd968263765f0ef0b17867216a2d3f33572a4
This commit is contained in:
Howard Chu 2021-04-30 09:25:13 +01:00
parent 7b2c9aed3c
commit 16fcba1e98

View File

@ -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;
}