From: Guus Sliepen Date: Sun, 7 Dec 2003 14:28:39 +0000 (+0000) Subject: Read MaxTimeout from tinc.conf like the manpage says. X-Git-Tag: release-1.0.3~37^2~25 X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=commitdiff_plain;h=25447b384173cc3c99660c784fd784c787917e80;ds=sidebyside Read MaxTimeout from tinc.conf like the manpage says. --- diff --git a/src/net_setup.c b/src/net_setup.c index 0d49ae9..2c07ec6 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;