Return-Path: Delivered-To: apmail-new-httpd-archive@apache.org Received: (qmail 88584 invoked by uid 500); 15 Oct 2000 22:49:11 -0000 Mailing-List: contact new-httpd-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list new-httpd@apache.org Received: (qmail 88572 invoked from network); 15 Oct 2000 22:49:10 -0000 Message-Id: <200010152249.e9FMn8227502@www.jetnet.co.uk> To: "New HTTPD mailing list" Subject: More buckets const stuff... Date: Sun, 15 Oct 2000 23:42:05 GMT From: "David Reid" MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Reply-To: dreid@jetnet.co.uk X-Mailer: BeOS Mail X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N This shuts up a compiler warning on BeOS. Don't know if it's needed so I haven't committed it. Ryan/Greg? Index: ap/ap_buckets.c =================================================================== RCS file: /home/cvs/apache-2.0/src/ap/ap_buckets.c,v retrieving revision 1.23 diff -u -u -r1.23 ap_buckets.c --- ap/ap_buckets.c 2000/10/15 22:24:12 1.23 +++ ap/ap_buckets.c 2000/10/15 22:45:25 @@ -242,7 +242,7 @@ int ap_insert_bucket_type(const ap_bucket_type *type) { - const ap_bucket_type **newone = (ap_bucket_type ** )apr_push_array(bucket_types); + const ap_bucket_type **newone = (const ap_bucket_type ** )apr_push_array(bucket_types); newone = &type;