RE: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp Ajp13.java

2002-01-23 Thread Kevin Seguin
> > > > > > total_read = readN(in, b, H_SIZE, len); > > - > > -if (total_read <= 0) { > > + > > +// it's ok to have read 0 bytes when len=0 -- this means > > +// the end of the stream has been reached. > > +if (total_read < 0) {

RE: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/ajp Ajp13.java

2002-01-23 Thread GOMEZ Henri
> > total_read = readN(in, b, H_SIZE, len); > - > -if (total_read <= 0) { > + > +// it's ok to have read 0 bytes when len=0 -- this means > +// the end of the stream has been reached. > +if (total_read < 0) { > logge