Return-Path: Delivered-To: apmail-httpd-apreq-cvs-archive@www.apache.org Received: (qmail 16950 invoked from network); 15 Mar 2005 04:59:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 15 Mar 2005 04:59:39 -0000 Received: (qmail 1389 invoked by uid 500); 15 Mar 2005 04:59:39 -0000 Delivered-To: apmail-httpd-apreq-cvs-archive@httpd.apache.org Received: (qmail 1370 invoked by uid 500); 15 Mar 2005 04:59:38 -0000 Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: apreq-dev@httpd.apache.org List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 1356 invoked by uid 99); 15 Mar 2005 04:59:38 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 14 Mar 2005 20:59:38 -0800 Received: (qmail 16918 invoked by uid 65534); 15 Mar 2005 04:59:37 -0000 Message-ID: <20050315045937.16915.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Tue, 15 Mar 2005 04:59:37 -0000 Subject: svn commit: r157514 - httpd/apreq/branches/multi-env-unstable/library/param.c To: apreq-cvs@httpd.apache.org From: randyk@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: randyk Date: Mon Mar 14 20:59:33 2005 New Revision: 157514 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D157514 Log: On Win32, this gets rid of a warning: param.c(250) : warning C4090: 'function' : different 'const' qualifiers param.c(250) : warning C4022: 'apr_table_do' : pointer mismatch for=20 actual parameter 2 Modified: httpd/apreq/branches/multi-env-unstable/library/param.c Modified: httpd/apreq/branches/multi-env-unstable/library/param.c URL: http://svn.apache.org/viewcvs/httpd/apreq/branches/multi-env-unstable/= library/param.c?view=3Ddiff&r1=3D157513&r2=3D157514 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- httpd/apreq/branches/multi-env-unstable/library/param.c (original) +++ httpd/apreq/branches/multi-env-unstable/library/param.c Mon Mar 14 20:5= 9:33 2005 @@ -246,7 +246,7 @@ APREQ_DECLARE(const apreq_param_t *) apreq_upload(const apr_table_t *body, const char *name) { - const apreq_param_t *param =3D NULL; + apreq_param_t *param =3D NULL; apr_table_do(upload_set, ¶m, body, name, NULL); return param; }