diff options
author | lloyd <[email protected]> | 2008-04-13 20:28:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-04-13 20:28:02 +0000 |
commit | 2ca8f36e3b41b751a9febcd0aa741ab532b7eb33 (patch) | |
tree | d301232342b2c88d7c2858ee8470f977fda07f4d /src/randpool.cpp | |
parent | 95185d453f774b8eb7344b2906d73f8eb1ed87d2 (diff) | |
parent | e9590a1054722891b7d99a42fe2c81a5911e6c75 (diff) |
propagate from branch 'net.randombit.botan' (head 4b88c5d653d997e87cc333064ca1624636fc2186)
to branch 'net.randombit.botan.remove-libstate' (head 58c8bf4a26a93475d86418d899d7f7202263d4ae)
Diffstat (limited to 'src/randpool.cpp')
-rw-r--r-- | src/randpool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/randpool.cpp b/src/randpool.cpp index e935efe35..46968eee1 100644 --- a/src/randpool.cpp +++ b/src/randpool.cpp @@ -59,7 +59,7 @@ void Randpool::randomize(byte out[], u32bit length) throw(PRNG_Unseeded) *************************************************/ void Randpool::update_buffer() { - const u64bit timestamp = system_clock(); + const u64bit timestamp = system_time(); for(u32bit j = 0; j != counter.size(); ++j) if(++counter[j]) |