You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2004/02/28 13:08:30 UTC

cvs commit: httpd-2.0/server connection.c

jorton      2004/02/28 04:08:30

  Modified:    server   connection.c
  Log:
  * server/connection.c (ap_flush_conn): Fix typo.
  
  Revision  Changes    Path
  1.116     +1 -1      httpd-2.0/server/connection.c
  
  Index: connection.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/connection.c,v
  retrieving revision 1.115
  retrieving revision 1.116
  diff -w -d -u -r1.115 -r1.116
  --- connection.c	28 Feb 2004 00:45:26 -0000	1.115
  +++ connection.c	28 Feb 2004 12:08:30 -0000	1.116
  @@ -77,7 +77,7 @@
       APR_BRIGADE_INSERT_TAIL(bb, b);
   
       /* End Of Connection bucket */
  -    b = apr_bucket_eoc_create(c->bucket_alloc);
  +    b = ap_bucket_eoc_create(c->bucket_alloc);
       APR_BRIGADE_INSERT_TAIL(bb, b);
   
       ap_pass_brigade(c->output_filters, bb);