Author: dbkr
Date: 2006-08-06 12:22:50 +0000 (Sun, 06 Aug 2006)
New Revision: 9937
Modified:
trunk/freenet/src/freenet/node/useralerts/PeerManagerUserAlert.java
Log:
Fix missing closing quote mark on never connected peers warning.
Modified: trunk/freenet/src/freenet/node/useralerts/PeerManagerUserAlert.java
===================================================================
--- trunk/freenet/src/freenet/node/useralerts/PeerManagerUserAlert.java
2006-08-06 11:50:23 UTC (rev 9936)
+++ trunk/freenet/src/freenet/node/useralerts/PeerManagerUserAlert.java
2006-08-06 12:22:50 UTC (rev 9937)
@@ -90,7 +90,7 @@
"Your node is embedded like a 'chain' in the network
and does not contribute to the network's health. " +
"Try to get at least 3 connected peers at any given
time.";
} else if(neverConn > MAX_NEVER_CONNECTED_PEER_ALERT_THRESHOLD)
{
- s = "Many of this node's peers have never connected
even once: "+neverConn+". You should not add peers unless you know that they
have also added <a href=\"/darknet/myref.txt>your reference</a>.";
+ s = "Many of this node's peers have never connected
even once: "+neverConn+". You should not add peers unless you know that they
have also added <a href=\"/darknet/myref.txt\">your reference</a>.";
} else if((peers - conns) > MAX_DISCONN_PEER_ALERT_THRESHOLD){
s = "This node has too many disconnected peers
("+(peers - conns)+" > "+MAX_DISCONN_PEER_ALERT_THRESHOLD+
"). This will have a slight impact on your performance
as disconnected peers also consume a small amount of bandwidth and CPU.
Consider \"cleaning up\" your peer list. " +