1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-04 21:24:15 +00:00

fixed typo

This commit is contained in:
orignal 2016-12-22 20:34:06 -05:00
parent 213629ef52
commit 573ee0b584

View File

@ -775,7 +775,7 @@ namespace http {
{
uint32_t token;
RAND_bytes ((uint8_t *)&token, 4);
token |= 0x7FFFFFFF; // clear first bit
token &= 0x7FFFFFFF; // clear first bit
auto ts = i2p::util::GetSecondsSinceEpoch ();
for (auto it = m_Tokens.begin (); it != m_Tokens.end (); )
{