The following reply was made to PR mod_include/1994; it has been noted by GNATS.

From: "Richard Huveneers" <[EMAIL PROTECTED]>
To: "Dean Gaudet" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Subject: Re: mod_include/1994: MSIE 4 still choking on chunks with bputc()
Date: Thu, 26 Mar 1998 00:29:03 +0100

 Dean, the following patch seems to make MSIE happy.
 Can you take a quick look if it makes sense?
 
 Thanks, Richard.
 
 *** mod_servlet.c.orig  Thu Mar 26 00:23:28 1998
 --- mod_servlet.c       Thu Mar 26 00:23:54 1998
 ***************
 *** 727,733 ****
         int len_read = read( sock, databuffer, sizeof(databuffer) );
         if ( len_read <= 0 )
             break;
 !       if ( write( r->connection->client->fd, databuffer, len_read ) <= 0 )
             break;
       }
 
 --- 727,733 ----
         int len_read = read( sock, databuffer, sizeof(databuffer) );
         if ( len_read <= 0 )
             break;
 !       if ( bwrite( r->connection->client, databuffer, len_read ) <= 0 )
             break;
       }
 
 -----Original Message-----
 From: Dean Gaudet <[EMAIL PROTECTED]>
 To: Richard Huveneers <[EMAIL PROTECTED]>
 Cc: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
 Date: Wednesday, March 25, 1998 23:32
 Subject: Re: mod_include/1994: MSIE 4 still choking on chunks with bputc()
 
 
 
 >Aha, <!--#include virtual="/servlet/VenA?f=0&topic=0" -->... what's that?
 >Is that using mod_jserv or some other module?  This happens to be in the
 >chunk where things go wrong, so it's suspicious.
 
 

Reply via email to