From 44b87ddb7ac90be13ef3e3d5118acaa158184853 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 12 Jan 2003 17:02:23 +0000 Subject: [PATCH] Run graph algorithm when replacing a second connection from the same host replaces an older one. --- src/protocol_auth.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/protocol_auth.c b/src/protocol_auth.c index 83b1c200..da2fa130 100644 --- a/src/protocol_auth.c +++ b/src/protocol_auth.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: protocol_auth.c,v 1.1.4.17 2002/09/09 22:32:59 guus Exp $ + $Id: protocol_auth.c,v 1.1.4.18 2003/01/12 17:02:23 guus Exp $ */ #include "config.h" @@ -548,6 +548,8 @@ int ack_h(connection_t *c) syslog(LOG_DEBUG, _("Established a second connection with %s (%s), closing old connection"), n->name, n->hostname); terminate_connection(n->connection, 0); + /* Run graph algorithm to purge key and make sure up/down scripts are rerun with new IP addresses and stuff */ + graph(); } } -- 2.20.1