summaryrefslogtreecommitdiff
path: root/src/or/circuitlist.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-10-06 22:18:01 +0000
committerNick Mathewson <nickm@torproject.org>2005-10-06 22:18:01 +0000
commitcc35e1720f7dde775e2c8246c2f9b542954e401f (patch)
tree68a8b834a6d2a466d883a733923168ea915d4205 /src/or/circuitlist.c
parent0e5b6a84eb1ab156437d24c2fc1cb61249b008d4 (diff)
downloadtor-cc35e1720f7dde775e2c8246c2f9b542954e401f.tar.gz
tor-cc35e1720f7dde775e2c8246c2f9b542954e401f.zip
Using RAND_pseudo_bytes instead of RAND_bytes is an accident waiting to happen, and does not really speed us up much when we do it. So stop doing it.
svn:r5210
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r--src/or/circuitlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index 7e50762963..6d93564ebe 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -219,7 +219,7 @@ circuit_new(uint16_t p_circ_id, connection_t *p_conn)
circ->package_window = CIRCWINDOW_START;
circ->deliver_window = CIRCWINDOW_START;
- circ->next_stream_id = crypto_pseudo_rand_int(1<<16);
+ circ->next_stream_id = crypto_rand_int(1<<16);
circ->global_identifier = n_circuits_allocated++;
circuit_add(circ);