[freenet-cvs] r14551 - trunk/freenet/src/freenet/node

juiceman at freenetproject.org juiceman at freenetproject.org
Wed Aug 8 23:59:53 UTC 2007


Author: juiceman
Date: 2007-08-08 23:59:53 +0000 (Wed, 08 Aug 2007)
New Revision: 14551

Modified:
   trunk/freenet/src/freenet/node/NodeClientCore.java
Log:
Surely is time to set the default to false.  Users have had months of notice.  I will let someone else drop support for pre-1010 keys in the future.

Modified: trunk/freenet/src/freenet/node/NodeClientCore.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeClientCore.java	2007-08-08 23:21:15 UTC (rev 14550)
+++ trunk/freenet/src/freenet/node/NodeClientCore.java	2007-08-08 23:59:53 UTC (rev 14551)
@@ -330,7 +330,7 @@
 		// REDFLAG normally we wouldn't use static variables to carry important non-final data, but in this
 		// case it's temporary code which will be removed before 0.7.0.
 		
-		nodeConfig.register("allowInsecureCHKs", true, sortOrder++, true, false, "NodeClientCore.allowInsecureCHK", "NodeClientCore.allowInsecureCHKLong",
+		nodeConfig.register("allowInsecureCHKs", false, sortOrder++, true, false, "NodeClientCore.allowInsecureCHK", "NodeClientCore.allowInsecureCHKLong",
 				new BooleanCallback() {
 
 					public boolean get() {
@@ -345,7 +345,7 @@
 		
 		Key.ALLOW_INSECURE_CLIENT_CHKS = nodeConfig.getBoolean("allowInsecureCHKs");
 		
-		nodeConfig.register("allowInsecureSSKs", true, sortOrder++, true, false, "NodeClientCore.allowInsecureSSK", "NodeClientCore.allowInsecureSSKLong",
+		nodeConfig.register("allowInsecureSSKs", false, sortOrder++, true, false, "NodeClientCore.allowInsecureSSK", "NodeClientCore.allowInsecureSSKLong",
 				new BooleanCallback() {
 
 					public boolean get() {




More information about the cvs mailing list