Update of /cvsroot/freenet/freenet/src/freenet/node
In directory sc8-pr-cvs1:/tmp/cvs-serv31735

Modified Files:
        Node.java 
Log Message:
Fix typo in Reducing rtMaxNodes stderr message string.

Index: Node.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/node/Node.java,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- Node.java   10 Sep 2003 21:19:52 -0000      1.209
+++ Node.java   16 Sep 2003 02:29:20 -0000      1.210
@@ -1986,7 +1986,7 @@
         rtMaxNodes = params.getInt("rtMaxNodes");
        if(maxNodeConnections > 0 && rtMaxNodes > maxNodeConnections / 4) {
            rtMaxNodes = maxNodeConnections/4;
-           String s = "Reducing rtMaxNodes to "+rtMaxNodes+" - was too high for 
maxNodeConnections "+maxNodeConnections+" because we keep an idle conn open tpo each 
node.";
+           String s = "Reducing rtMaxNodes to "+rtMaxNodes+" - was too high for 
maxNodeConnections "+maxNodeConnections+" because we keep an idle conn open to each 
node.";
            System.err.println(s);
            logger.log(Node.class, s, Logger.ERROR);
        }

_______________________________________________
cvs mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to