Import Upstream version 1.0.35
This commit is contained in:
parent
b28bb7b29b
commit
a04a7bcd67
44 changed files with 4173 additions and 2323 deletions
|
|
@ -140,7 +140,7 @@ void node_del(node_t *n) {
|
|||
}
|
||||
|
||||
node_t *lookup_node(char *name) {
|
||||
node_t n = {};
|
||||
node_t n = {0};
|
||||
|
||||
n.name = name;
|
||||
|
||||
|
|
@ -148,7 +148,7 @@ node_t *lookup_node(char *name) {
|
|||
}
|
||||
|
||||
node_t *lookup_node_udp(const sockaddr_t *sa) {
|
||||
node_t n = {};
|
||||
node_t n = {0};
|
||||
|
||||
n.address = *sa;
|
||||
n.name = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue