wrowe 01/01/27 06:52:55
Modified: buckets apr_buckets.c
include apr_buckets.h
Log:
Missing export required for inserting the http error bucket type
Revision Changes Path
1.45 +1 -1 apr-util/buckets/apr_buckets.c
Index: apr_buckets.c
===================================================================
RCS file: /home/cvs/apr-util/buckets/apr_buckets.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- apr_buckets.c 2001/01/19 07:02:00 1.44
+++ apr_buckets.c 2001/01/27 14:52:54 1.45
@@ -86,7 +86,7 @@
apr_insert_bucket_type(&apr_bucket_type_socket);
}
-int apr_insert_bucket_type(const apr_bucket_type_t *type)
+APU_DECLARE(int) apr_insert_bucket_type(const apr_bucket_type_t *type)
{
const apr_bucket_type_t **newone;
1.68 +1 -1 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- apr_buckets.h 2001/01/23 22:24:06 1.67
+++ apr_buckets.h 2001/01/27 14:52:55 1.68
@@ -778,7 +778,7 @@
* @param type The new bucket type to register
* @return The offset into the array in which the bucket types are stored
*/
-int apr_insert_bucket_type(const apr_bucket_type_t *type);
+APU_DECLARE(int) apr_insert_bucket_type(const apr_bucket_type_t *type);
/* All of the bucket types implemented by the core */
/**