X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet.c;h=54e13232b4c466f114bb7cb935915255c0c2516b;hp=0eb5ef38e8de6ff9c9f9bbbd73c705a4c8f7af89;hb=77be52422d8c28735f787b1c233b4cec73d4db56;hpb=8cb4bb619d777022a55255c5fa17a1a55a270ff3 diff --git a/src/net.c b/src/net.c index 0eb5ef38..54e13232 100644 --- a/src/net.c +++ b/src/net.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: net.c,v 1.34 2000/05/30 12:38:15 zarq Exp $ + $Id: net.c,v 1.35 2000/05/31 18:23:05 zarq Exp $ */ #include "config.h" @@ -848,24 +848,21 @@ cp /* Find all connections that were lost because they were behind cl (the connection that was dropped). */ for(p = conn_list; p != NULL; p = p->next) - { - if(p->nexthop == cl) - { - p->status.active = 0; - p->status.remove = 1; - } - } + if(p->nexthop == cl) + { + p->status.active = 0; + p->status.remove = 1; + } cp /* Then send a notification about all these connections to all hosts that are still connected to us. */ for(p = conn_list; p != NULL; p = p->next) - { - if(!p->status.remove && p->status.meta) - for(q = conn_list; q != NULL; q = q->next) - if(q->status.remove) - send_del_host(p, q); - } + if(!p->status.remove && p->status.meta) + for(q = conn_list; q != NULL; q = q->next) + if(q->status.remove) + send_del_host(p, q); + cp }