diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-04-13 09:48:11 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-04-13 09:48:11 +0000 |
commit | 428b82796705988239c4c7f09dc6a89c22a8e615 (patch) | |
tree | d07301f0f9692d6878913d2a263fd105a079423c /init.c | |
parent | Version 2.1_beta13 released (diff) | |
download | openvpn-428b82796705988239c4c7f09dc6a89c22a8e615.tar.xz |
Temporarily backed out time backtrack handling code
due to issues on Windows.
Rewrote gettimeofday function for Windows to be
simpler and more efficient.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1005 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -286,6 +286,11 @@ init_static (void) return false; #endif +#ifdef TIME_TEST + time_test (); + return false; +#endif + return true; } |