Author: toad
Date: 2006-04-12 19:54:28 +0000 (Wed, 12 Apr 2006)
New Revision: 8531

Modified:
   trunk/freenet/src/freenet/node/TextModeClientInterface.java
   trunk/freenet/src/freenet/node/Version.java
Log:
638: Fix the feedback-greatly-delayed on console via telnet bug.

Modified: trunk/freenet/src/freenet/node/TextModeClientInterface.java
===================================================================
--- trunk/freenet/src/freenet/node/TextModeClientInterface.java 2006-04-12 
18:20:25 UTC (rev 8530)
+++ trunk/freenet/src/freenet/node/TextModeClientInterface.java 2006-04-12 
19:54:28 UTC (rev 8531)
@@ -65,7 +65,7 @@
        this.downloadsDir = server.downloadsDir;
        this.in = in;
        this.out = out;
-        client.addGlobalHook(new EventDumper(new PrintWriter(out)));
+        client.addGlobalHook(new EventDumper(new PrintWriter(out, true)));
        }

     public TextModeClientInterface(Node n, HighLevelSimpleClient c, File 
downloadDir, InputStream in, OutputStream out) {
@@ -76,7 +76,7 @@
        this.downloadsDir = downloadDir;
        this.in = in;
        this.out = out;
-        client.addGlobalHook(new EventDumper(new PrintWriter(out)));
+        client.addGlobalHook(new EventDumper(new PrintWriter(out, true)));
     }

     public void run() {

Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-04-12 18:20:25 UTC (rev 
8530)
+++ trunk/freenet/src/freenet/node/Version.java 2006-04-12 19:54:28 UTC (rev 
8531)
@@ -20,7 +20,7 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 637;
+       private static final int buildNumber = 638;

        /** Oldest build of Fred we will talk to */
        private static final int lastGoodBuild = 591;


Reply via email to