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.
This commit is contained in:
parent
75773efe26
commit
35e87b903e
4 changed files with 6 additions and 6 deletions
|
|
@ -49,7 +49,7 @@ bool send_key_changed()
|
|||
if(!mykeyused)
|
||||
return true;
|
||||
|
||||
return send_request(broadcast, "%d %lx %s", KEY_CHANGED, random(), myself->name);
|
||||
return send_request(broadcast, "%d %x %s", KEY_CHANGED, rand(), myself->name);
|
||||
}
|
||||
|
||||
bool key_changed_h(connection_t *c)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue