Author: zothar
Date: 2008-01-27 23:16:36 +0000 (Sun, 27 Jan 2008)
New Revision: 17334
Modified:
trunk/freenet/src/freenet/node/NodeIPDetector.java
Log:
Fix a edit error in tempIPAddressHint I missed in r17332
Modified: trunk/freenet/src/freenet/node/NodeIPDetector.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeIPDetector.java 2008-01-27 23:09:12 UTC
(rev 17333)
+++ trunk/freenet/src/freenet/node/NodeIPDetector.java 2008-01-27 23:16:36 UTC
(rev 17334)
@@ -391,7 +391,7 @@
});
String ipHintString = nodeConfig.getString("tempIPAddressHint");
- if(ipOverrideString.length() > 0) {
+ if(ipHintString.length() > 0) {
try {
oldIPAddress = new
FreenetInetAddress(ipHintString, false);
} catch (UnknownHostException e) {