Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 31962 invoked by uid 500); 8 Sep 2000 22:23:12 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 31939 invoked by uid 500); 8 Sep 2000 22:23:11 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 8 Sep 2000 22:23:10 -0000 Message-ID: <20000908222310.31909.qmail@locus.apache.org> From: fanf@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/ap ap_buckets_pipe.c fanf 00/09/08 15:23:10 Modified: src/ap ap_buckets_pipe.c Log: correct the order of the arguments when inserting a new bucket into the ring Revision Changes Path 1.8 +1 -1 apache-2.0/src/ap/ap_buckets_pipe.c Index: ap_buckets_pipe.c =================================================================== RCS file: /home/cvs/apache-2.0/src/ap/ap_buckets_pipe.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -u -r1.7 -r1.8 --- ap_buckets_pipe.c 2000/09/08 10:15:57 1.7 +++ ap_buckets_pipe.c 2000/09/08 22:23:09 1.8 @@ -88,7 +88,7 @@ if (*len > 0) { a = ap_bucket_create_pipe(bd->thepipe); b = ap_bucket_make_heap(b, buf, *len, 0, NULL); - AP_RING_INSERT_AFTER(a, b, link); + AP_RING_INSERT_AFTER(b, a, link); } return APR_SUCCESS; }