Use only rand(), not random().
authorGuus Sliepen <guus@tinc-vpn.org>
Mon, 14 Sep 2009 21:06:00 +0000 (23:06 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Mon, 14 Sep 2009 21:06:00 +0000 (23:06 +0200)
commit35e87b903e08fc51975a8cc97f06251d5153a424
tree70f3e844c7ffd730ae7de9f62534156ebebe6824
parent75773efe2689d347a2f219c5f27e4a82eef1236b
Use only rand(), not random().

We used both rand() and random() in our code. Since it returns an int, we have
to use %x in our format strings instead of %lx. This fixes a crash under
Windows when cross-compiling tinc with a recent version of MinGW.
src/net_packet.c
src/protocol_edge.c
src/protocol_key.c
src/protocol_subnet.c