From commits-return-11770-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Fri Feb 18 21:41:06 2011 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 20155 invoked from network); 18 Feb 2011 21:41:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 18 Feb 2011 21:41:06 -0000 Received: (qmail 70303 invoked by uid 500); 18 Feb 2011 21:41:06 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 70206 invoked by uid 500); 18 Feb 2011 21:41:05 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 70199 invoked by uid 99); 18 Feb 2011 21:41:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Feb 2011 21:41:05 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Feb 2011 21:41:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AC90C238896F; Fri, 18 Feb 2011 21:40:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1072159 - /apr/apr/trunk/include/apr_tables.h Date: Fri, 18 Feb 2011 21:40:42 -0000 To: commits@apr.apache.org From: sf@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110218214042.AC90C238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sf Date: Fri Feb 18 21:40:42 2011 New Revision: 1072159 URL: http://svn.apache.org/viewvc?rev=1072159&view=rev Log: note that keys are case insensitive Modified: apr/apr/trunk/include/apr_tables.h Modified: apr/apr/trunk/include/apr_tables.h URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_tables.h?rev=1072159&r1=1072158&r2=1072159&view=diff ============================================================================== --- apr/apr/trunk/include/apr_tables.h (original) +++ apr/apr/trunk/include/apr_tables.h Fri Feb 18 21:40:42 2011 @@ -271,7 +271,7 @@ APR_DECLARE(const char *) apr_table_get( * Add a key/value pair to a table. If another element already exists with the * same key, this will overwrite the old data. * @param t The table to add the data to. - * @param key The key to use + * @param key The key to use (case does not matter) * @param val The value to add * @remark When adding data, this function makes a copy of both the key and the * value.