aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-02-13 20:00:44 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-02-13 20:00:44 +0000
commit1402a526af838cb84fed344fdd553d46e1e13871 (patch)
tree84a1820b0dc8045a570b3ffd2c70d1669473e433
parentMerge pull request #658 (diff)
downloadmonero-1402a526af838cb84fed344fdd553d46e1e13871.tar.xz
epee: always call the PRNG through the locked API
-rw-r--r--contrib/epee/include/net/abstract_tcp_server2.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/abstract_tcp_server2.inl b/contrib/epee/include/net/abstract_tcp_server2.inl
index 934132ea2..4fb6fa75d 100644
--- a/contrib/epee/include/net/abstract_tcp_server2.inl
+++ b/contrib/epee/include/net/abstract_tcp_server2.inl
@@ -144,7 +144,7 @@ PRAGMA_WARNING_DISABLE_VS(4355)
// create a random uuid
boost::uuids::uuid random_uuid;
// that stuff turns out to be included, even though it's from src... Taking advantage
- crypto::generate_random_bytes(sizeof(random_uuid), &random_uuid);
+ random_uuid = crypto::rand<boost::uuids::uuid>();
context.set_details(random_uuid, ip_, remote_ep.port(), is_income);
_dbg3("[sock " << socket_.native_handle() << "] new connection from " << print_connection_context_short(context) <<