erlcloud / lhttpc

lhttpc is a lightweight HTTP/1.1 client implemented in Erlang.
Other
1 stars 19 forks source link

Fixed Erlang 19.1 compilation warnings #9

Closed SergeyOvchinnik closed 7 years ago

SergeyOvchinnik commented 7 years ago

Problem:

Compiling with Erlang 19.1 would yield the following warning: Warning: crypto:rand_bytes/1 is deprecated and will be removed in a future release; use crypto:strong_rand_bytes/1

Solution:

Reimplemented using strong_rand_bytes

SergeyOvchinnik commented 7 years ago

@nalundgaard Better now?