mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
ITS#6885: Fix lutil_get_now for !HAVE_GETTIMEOFDAY
This commit is contained in:
parent
be0a8db087
commit
86dc9d8a4c
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ lutil_get_now (double *now)
|
|||
|
||||
assert( now );
|
||||
time( &tm );
|
||||
now = (double) tm;
|
||||
*now = (double) tm;
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue