Displaying 1 result from an estimated 1 matches for "subnet_add".
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...ut if this is an outgoing connection. */
diff -ubr tinc-1.0.8/src/protocol_subnet.c tinc-1.0.8.my/src/protocol_subnet.c
--- tinc-1.0.8/src/protocol_subnet.c Wed Apr 26 15:53:05 2006
+++ tinc-1.0.8.my/src/protocol_subnet.c Thu Sep 25 11:19:53 2008
@@ -134,7 +134,7 @@
*(new = new_subnet()) = s;
subnet_add(owner, new);
- if(owner->status.reachable)
+ if(owner->status.st.reachable)
subnet_update(owner, new, true);
/* Tell the rest */
@@ -232,7 +232,7 @@
/* Finally, delete it. */
- if(owner->status.reachable)
+ if(owner->status.st.reachable)
subnet_update(owner, find, fals...