summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-06-04 18:41:08 +0000
committerNick Mathewson <nickm@torproject.org>2008-06-04 18:41:08 +0000
commitae2d022f0cf53f4427d097e1581e00a7270ad3dc (patch)
treef2aa536ed93385d58437cc81fb8fa6d711284e03 /src
parentfa0989fd67d638480ea5811657ec5d25d6962edc (diff)
downloadtor-ae2d022f0cf53f4427d097e1581e00a7270ad3dc.tar.gz
tor-ae2d022f0cf53f4427d097e1581e00a7270ad3dc.zip
Remov unused macro in crypto.c
svn:r14950
Diffstat (limited to 'src')
-rw-r--r--src/common/crypto.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 55893fd98b..18c5b81e0a 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -1684,9 +1684,6 @@ crypto_dh_free(crypto_dh_env_t *dh)
OPENSSL_VERSION_NUMBER <= 0x00907fffl) || \
(OPENSSL_VERSION_NUMBER >= 0x0090803fl))
-/* We could actually get away with calling RAND_poll */
-#define USE_RAND_POLL (HAVE_RAND_POLL && RAND_POLL_IS_SAFE)
-
/** Seed OpenSSL's random number generator with bytes from the operating
* system. <b>startup</b> should be true iff we have just started Tor and
* have not yet allocated a bunch of fds. Return 0 on success, -1 on failure.