diff options
author | Werner Koch <[email protected]> | 1999-02-10 16:22:40 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1999-02-10 16:22:40 +0000 |
commit | 9a4f506a18ed04f5dbd69d74ec0c35ade79e357a (patch) | |
tree | 07178f77cb23862b045b0edf8a2bc5ce188432cd /cipher/random.c | |
parent | See ChangeLog: Sun Jan 24 18:16:26 CET 1999 Werner Koch (diff) | |
download | gnupg-9a4f506a18ed04f5dbd69d74ec0c35ade79e357a.tar.gz gnupg-9a4f506a18ed04f5dbd69d74ec0c35ade79e357a.zip |
See ChangeLog: Wed Feb 10 17:15:39 CET 1999 Werner Koch
Diffstat (limited to '')
-rw-r--r-- | cipher/random.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/cipher/random.c b/cipher/random.c index b0bc832e6..bcd017d4c 100644 --- a/cipher/random.c +++ b/cipher/random.c @@ -116,16 +116,7 @@ initialize() keypool = secure_alloc ? m_alloc_secure_clear(POOLSIZE+BLOCKLEN) : m_alloc_clear(POOLSIZE+BLOCKLEN); is_initialized = 1; - - #if USE_RNDLINUX - rndlinux_constructor(); - #elif USE_RNDUNIX - rndunix_constructor(); - #elif USE_RNDW32 - #elif USE_RNDOS2 - #elif USE_RNDATARI - #elif USE_RNDMVS - #endif + cipher_modules_constructor(); } void |