Author: toad
Date: 2007-07-06 23:52:59 +0000 (Fri, 06 Jul 2007)
New Revision: 13976

Modified:
   trunk/freenet/src/freenet/clients/http/HTTPRequestImpl.java
Log:
slightly less confusing logging

Modified: trunk/freenet/src/freenet/clients/http/HTTPRequestImpl.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/HTTPRequestImpl.java 2007-07-06 
23:30:33 UTC (rev 13975)
+++ trunk/freenet/src/freenet/clients/http/HTTPRequestImpl.java 2007-07-06 
23:52:59 UTC (rev 13976)
@@ -406,11 +406,11 @@
                if (boundary.charAt(boundary.length() - 1) == '"')
                        boundary = boundary.substring(0, boundary.length() - 1);

+               boundary = "--"+boundary;
+               
                if(Logger.shouldLog(Logger.MINOR, this))
                        Logger.minor(this, "Boundary is: "+boundary);

-               boundary = "--"+boundary;
-               
                InputStream is = this.data.getInputStream();
                BufferedInputStream bis = new BufferedInputStream(is, 32768);
                LineReadingInputStream lis = new LineReadingInputStream(bis);


Reply via email to