projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d917c8c
)
Clear status and options fields of unreachable nodes.
author
Guus Sliepen
<guus@tinc-vpn.org>
Thu, 11 Oct 2012 20:21:30 +0000
(22:21 +0200)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Thu, 11 Oct 2012 20:21:30 +0000
(22:21 +0200)
src/graph.c
patch
|
blob
|
history
diff --git
a/src/graph.c
b/src/graph.c
index
6428f4d
..
9036c52
100644
(file)
--- a/
src/graph.c
+++ b/
src/graph.c
@@
-246,6
+246,8
@@
static void check_reachability(void) {
if(!n->status.reachable) {
update_node_udp(n, NULL);
+ memset(&n->status, 0, sizeof n->status);
+ n->options = 0;
} else if(n->connection) {
if(n->status.sptps) {
if(n->connection->outgoing)