Mailing List Archive

cvs commit: apache-2.0/src/include ap_buckets.h
fanf 00/09/08 18:20:07

Modified: src/include ap_buckets.h
Log:
Namespace-protect the tag of the structure containing the header of the
ring of buckets inside a brigade. The tag shouldn't be necessary but
aparrently the Windows compiler is broken without it.

Revision Changes Path
1.23 +5 -1 apache-2.0/src/include/ap_buckets.h

Index: ap_buckets.h
===================================================================
RCS file: /home/cvs/apache-2.0/src/include/ap_buckets.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -u -r1.22 -r1.23
--- ap_buckets.h 2000/09/08 22:47:10 1.22
+++ ap_buckets.h 2000/09/09 01:20:07 1.23
@@ -204,7 +204,11 @@
*/
apr_pool_t *p;
/** The buckets in the brigade are on this list. */
- AP_RING_HEAD(head, ap_bucket) list;
+ /*
+ * XXX: the ap_bucket_list tag shouldn't me necessary but
+ * aparrently without it this fails to compile on Windows.
+ */
+ AP_RING_HEAD(ap_bucket_list, ap_bucket) list;
};

/**