From 2215dd7bd7b07c93b8e96458ef5b86b7d04b8881 Mon Sep 17 00:00:00 2001 From: orignal Date: Mon, 2 Feb 2015 11:14:09 -0500 Subject: [PATCH] ability to turn floodfill off --- Daemon.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Daemon.cpp b/Daemon.cpp index dbc65053..6fd54f0e 100644 --- a/Daemon.cpp +++ b/Daemon.cpp @@ -77,10 +77,8 @@ namespace i2p if (i2p::util::config::GetArg("-unreachable", 0)) i2p::context.SetUnreachable (); - if (i2p::util::config::GetArg("-floodfill", 0)) - i2p::context.SetFloodfill (true); - i2p::context.SetSupportsV6 (i2p::util::config::GetArg("-v6", 0)); + i2p::context.SetFloodfill (i2p::util::config::GetArg("-floodfill", 0)); LogPrint("CMD parameters:"); for (int i = 0; i < argc; ++i)