You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2001/10/01 17:48:16 UTC

cvs commit: httpd-2.0/modules/http http_protocol.c

wrowe       01/10/01 08:48:16

  Modified:    modules/http http_protocol.c
  Log:
    Remain consistent to the connection_rec, and use apr_off_t for remaining.
  
  Revision  Changes    Path
  1.368     +1 -1      httpd-2.0/modules/http/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/http/http_protocol.c,v
  retrieving revision 1.367
  retrieving revision 1.368
  diff -u -r1.367 -r1.368
  --- http_protocol.c	2001/09/30 01:37:20	1.367
  +++ http_protocol.c	2001/10/01 15:48:15	1.368
  @@ -484,7 +484,7 @@
   static long get_chunk_size(char *);
   
   typedef struct http_filter_ctx {
  -    apr_size_t remaining;
  +    apr_off_t remaining;
       enum {
           BODY_NONE,
           BODY_LENGTH,