You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jw...@apache.org on 2002/04/20 07:02:30 UTC

cvs commit: httpd-2.0/server error_bucket.c

jwoolley    02/04/19 22:02:30

  Modified:    server   error_bucket.c
  Log:
  Propogate the change to insert "bucket_" into the names of the
  static functions that operate on various bucket types to make
  backtraces more sensible-looking.
  
  Revision  Changes    Path
  1.13      +3 -3      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.12
  retrieving revision 1.13
  diff -u -d -u -r1.12 -r1.13
  --- error_bucket.c	29 Mar 2002 08:17:24 -0000	1.12
  +++ error_bucket.c	20 Apr 2002 05:02:30 -0000	1.13
  @@ -59,8 +59,8 @@
   #include <strings.h>
   #endif
   
  -static apr_status_t error_read(apr_bucket *b, const char **str,
  -                               apr_size_t *len, apr_read_type_e block)
  +static apr_status_t error_bucket_read(apr_bucket *b, const char **str,
  +                                      apr_size_t *len, apr_read_type_e block)
   {
       *str = NULL;
       *len = 0;
  @@ -98,7 +98,7 @@
   AP_DECLARE_DATA const apr_bucket_type_t ap_bucket_type_error = {
       "ERROR", 5,
       apr_bucket_free,
  -    error_read,
  +    error_bucket_read,
       apr_bucket_setaside_notimpl,
       apr_bucket_split_notimpl,
       apr_bucket_copy_notimpl