fanf 00/09/07 19:08:14
Modified: src/include ap_ring.h Log: fix a couiple of mis-named variables Revision Changes Path 1.2 +4 -4 apache-2.0/src/include/ap_ring.h Index: ap_ring.h =================================================================== RCS file: /home/cvs/apache-2.0/src/include/ap_ring.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- ap_ring.h 2000/09/08 02:00:05 1.1 +++ ap_ring.h 2000/09/08 02:08:14 1.2 @@ -186,11 +186,11 @@ #define AP_RING_SPLICE_TAIL(hp, ep1, epN, link) \ AP_RING_SPLICE_AFTER(AP_RING_LAST((hp)), (ep1), (epN), link) -#define AP_RING_INSERT_HEAD(lep, nep, link) \ - AP_RING_SPLICE_HEAD((lep), (nep), (nep), link) +#define AP_RING_INSERT_HEAD(hp, nep, link) \ + AP_RING_SPLICE_HEAD((hp), (nep), (nep), link) -#define AP_RING_INSERT_TAIL(lep, nep, link) \ - AP_RING_SPLICE_TAIL((lep), (nep), (nep), link) +#define AP_RING_INSERT_TAIL(hp, nep, link) \ + AP_RING_SPLICE_TAIL((hp), (nep), (nep), link) /* * Concatenating ring h2 onto the end of ring h1 leaves h2 empty.