Index: Ajp13.java
===================================================================
RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp13.java,v
retrieving revision 1.17
diff -u -r1.17 Ajp13.java
--- Ajp13.java	2001/02/28 19:41:23	1.17
+++ Ajp13.java	2001/06/19 02:40:35
@@ -864,7 +864,7 @@
 	 */
 	public void appendBytes( byte b[], int off, int numBytes ) {
 	    appendInt( numBytes );
-	    if( pos + numBytes > buff.length ) {
+	    if( pos + numBytes >= buff.length ) {
 		System.out.println("Buffer overflow " + buff.length + " " + pos + " " + numBytes );
 		// XXX Log
 	    }
