Mailing List Archive

cvs commit: apache-2.0/src/include ap_buckets.h
rbb 00/10/16 20:18:47

Modified: src/include ap_buckets.h
Log:
Capitalize a part of a macro that was accidentally committed in lowercase

Revision Changes Path
1.43 +1 -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.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ap_buckets.h 2000/10/17 01:41:56 1.42
+++ ap_buckets.h 2000/10/17 03:18:46 1.43
@@ -258,7 +258,7 @@
#define AP_BUCKET_IS_HEAP(e) (e->type == &ap_heap_type)
#define AP_BUCKET_IS_TRANSIENT(e) (e->type == &ap_transient_type)
#define AP_BUCKET_IS_IMMORTAL(e) (e->type == &ap_immortal_type)
-#define AP_BUCKET_IS_mmap(e) (e->type == &ap_mmap_type)
+#define AP_BUCKET_IS_MMAP(e) (e->type == &ap_mmap_type)

/**
* General-purpose reference counting for the varous bucket types.