X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprotocol_subnet.c;fp=src%2Fprotocol_subnet.c;h=b50cf6a348cd4d0367902f615d3df57e5b576552;hp=d40b3a33afe255f02439953769ec8a71fbe51342;hb=35e87b903e08fc51975a8cc97f06251d5153a424;hpb=75773efe2689d347a2f219c5f27e4a82eef1236b diff --git a/src/protocol_subnet.c b/src/protocol_subnet.c index d40b3a33..b50cf6a3 100644 --- a/src/protocol_subnet.c +++ b/src/protocol_subnet.c @@ -42,7 +42,7 @@ bool send_add_subnet(connection_t *c, const subnet_t *subnet) if(!net2str(netstr, sizeof netstr, subnet)) return false; - return send_request(c, "%d %lx %s %s", ADD_SUBNET, random(), subnet->owner->name, netstr); + return send_request(c, "%d %x %s %s", ADD_SUBNET, rand(), subnet->owner->name, netstr); } bool add_subnet_h(connection_t *c) @@ -161,7 +161,7 @@ bool send_del_subnet(connection_t *c, const subnet_t *s) if(!net2str(netstr, sizeof netstr, s)) return false; - return send_request(c, "%d %lx %s %s", DEL_SUBNET, random(), s->owner->name, netstr); + return send_request(c, "%d %x %s %s", DEL_SUBNET, rand(), s->owner->name, netstr); } bool del_subnet_h(connection_t *c)