From 25447b384173cc3c99660c784fd784c787917e80 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sun, 7 Dec 2003 14:28:39 +0000 Subject: [PATCH] Read MaxTimeout from tinc.conf like the manpage says. --- src/net_setup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net_setup.c b/src/net_setup.c index 0d49ae91..2c07ec63 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.46 2003/11/17 15:30:17 guus Exp $ + $Id: net_setup.c,v 1.1.2.47 2003/12/07 14:28:39 guus Exp $ */ #include "system.h" @@ -318,7 +318,7 @@ bool setup_myself(void) if(!get_config_int(lookup_config(config_tree, "MACExpire"), &macexpire)) macexpire = 600; - if(get_config_int(lookup_config(myself->connection->config_tree, "MaxTimeout"), &maxtimeout)) { + if(get_config_int(lookup_config(config_tree, "MaxTimeout"), &maxtimeout)) { if(maxtimeout <= 0) { logger(LOG_ERR, _("Bogus maximum timeout!")); return false; -- 2.20.1