From: Cliff Woolley Date: Sat, 20 Apr 2002 05:02:30 +0000 (+0000) Subject: Propogate the change to insert "bucket_" into the names of the X-Git-Tag: 2.0.36~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=649137f767069ec2a4db8beb0d7b7b6b4c2634a7;p=thirdparty%2Fapache%2Fhttpd.git 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94733 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/error_bucket.c b/server/error_bucket.c index 57ad7e4b22d..49ac10a7aa0 100644 --- a/server/error_bucket.c +++ b/server/error_bucket.c @@ -59,8 +59,8 @@ #include #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(apr_bucket *) ap_bucket_error_create(int error, const char *buf, 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