]> granicus.if.org Git - apache/commitdiff
Propogate the change to insert "bucket_" into the names of the
authorCliff Woolley <jwoolley@apache.org>
Sat, 20 Apr 2002 05:02:30 +0000 (05:02 +0000)
committerCliff Woolley <jwoolley@apache.org>
Sat, 20 Apr 2002 05:02:30 +0000 (05:02 +0000)
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

server/error_bucket.c

index 57ad7e4b22dd6ce30d5f3184549c70a8509f45c6..49ac10a7aa07dd10638e839acdbf20f4e2cb718b 100644 (file)
@@ -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(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