Author: toad
Date: 2006-12-19 18:45:47 +0000 (Tue, 19 Dec 2006)
New Revision: 11489
Modified:
trunk/freenet/src/freenet/node/LocationManager.java
Log:
Register the linked location as well as the link and the original location. DOH!
Modified: trunk/freenet/src/freenet/node/LocationManager.java
===================================================================
--- trunk/freenet/src/freenet/node/LocationManager.java 2006-12-19 17:57:18 UTC
(rev 11488)
+++ trunk/freenet/src/freenet/node/LocationManager.java 2006-12-19 18:45:47 UTC
(rev 11489)
@@ -963,6 +963,7 @@
// Third etc are locs of peers
for(int i=2;i<longs.length;i++) {
double loc = Double.longBitsToDouble(longs[i]);
+ registerKnownLocation(loc);
registerLocationLink(hisLoc, loc);
}
}