Index: WireLogInputStream.java =================================================================== RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/WireLogInputStream.java,v retrieving revision 1.11 diff -u -r1.11 WireLogInputStream.java --- WireLogInputStream.java 26 May 2003 22:07:22 -0000 1.11 +++ WireLogInputStream.java 30 Jun 2003 23:11:57 -0000 @@ -121,7 +121,7 @@ public int read(byte[] b) throws IOException { int l = this.in.read(b); if (l > 0) { - Wire.input(b); + Wire.input(b, 0, l); } return l; }