You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2001/08/03 16:26:03 UTC

cvs commit: httpd-2.0/server error_bucket.c

stoddard    01/08/03 07:26:03

  Modified:    server   error_bucket.c
  Log:
  Update this custom bucket to use the free function pointer in apr_bucket_type_t
  
  Revision  Changes    Path
  1.5       +1 -0      httpd-2.0/server/error_bucket.c
  
  Index: error_bucket.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/error_bucket.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- error_bucket.c	2001/06/19 18:48:21	1.4
  +++ error_bucket.c	2001/08/03 14:26:03	1.5
  @@ -99,6 +99,7 @@
   AP_DECLARE_DATA const apr_bucket_type_t ap_bucket_type_error = {
       "ERROR", 5,
       free,
  +    free,
       error_read,
       apr_bucket_setaside_notimpl,
       apr_bucket_split_notimpl,