From: Guus Sliepen Date: Sun, 10 Mar 2002 16:09:15 +0000 (+0000) Subject: Don't retry to make outgoing connections when exitting. X-Git-Tag: release-1.0pre6~53 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=5ffeb13d65313d5a191a605690a4f8fdf1604b48 Don't retry to make outgoing connections when exitting. --- diff --git a/src/net_setup.c b/src/net_setup.c index 77e7a7c9..a77fa58a 100644 --- a/src/net_setup.c +++ b/src/net_setup.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_setup.c,v 1.1.2.9 2002/03/01 15:14:29 guus Exp $ + $Id: net_setup.c,v 1.1.2.10 2002/03/10 16:09:15 guus Exp $ */ #include "config.h" @@ -567,7 +567,7 @@ cp next = node->next; c = (connection_t *)node->data; if(c->outgoing) - free(c->outgoing->name), free(c->outgoing); + free(c->outgoing->name), free(c->outgoing), c->outgoing = NULL; terminate_connection(c, 0); }