Read MaxTimeout from tinc.conf like the manpage says.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 7 Dec 2003 14:28:39 +0000 (14:28 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 7 Dec 2003 14:28:39 +0000 (14:28 +0000)
src/net_setup.c

index 0d49ae9..2c07ec6 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     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"
 */
 
 #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(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;
                if(maxtimeout <= 0) {
                        logger(LOG_ERR, _("Bogus maximum timeout!"));
                        return false;