Return-Path: Delivered-To: apmail-httpd-apreq-dev-archive@httpd.apache.org Received: (qmail 37808 invoked by uid 500); 9 Jun 2003 06:09:13 -0000 Mailing-List: contact apreq-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list apreq-dev@httpd.apache.org Received: (qmail 37797 invoked from network); 9 Jun 2003 06:09:12 -0000 Received: from theoryx5.uwinnipeg.ca (142.132.1.82) by daedalus.apache.org with SMTP; 9 Jun 2003 06:09:12 -0000 Received: from localhost (randy@localhost) by theoryx5.uwinnipeg.ca (8.11.6/8.11.6) with ESMTP id h595spe29168 for ; Mon, 9 Jun 2003 00:54:51 -0500 Date: Mon, 9 Jun 2003 00:54:51 -0500 (CDT) From: Randy Kobes To: apreq dev list Subject: [apreq-2] cookie_bake vs bake_cookie? In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N For apreq-2, in src/, apreq_cookie.h declares apreq_cookie_bake() and apreq_cookie_bake2(), whereas apreq_cookie.c has apreq_bake_cookie() and apreq_bake2_cookie(). This diff: =========================================================== Index: apreq_cookie.c =================================================================== RCS file: /home/cvs/httpd-apreq-2/src/apreq_cookie.c,v retrieving revision 1.14 diff -u -r1.14 apreq_cookie.c --- apreq_cookie.c 7 Jun 2003 20:07:41 -0000 1.14 +++ apreq_cookie.c 9 Jun 2003 06:00:43 -0000 @@ -478,7 +478,7 @@ return NULL; } -APREQ_DECLARE(apr_status_t) apreq_bake_cookie(const apreq_cookie_t *c, +APREQ_DECLARE(apr_status_t) apreq_cookie_bake(const apreq_cookie_t *c, void *env) { char *s = apreq_cookie_as_string(apreq_env_pool(env),c); @@ -493,7 +493,7 @@ return apreq_env_set_cookie(env, s); } -APREQ_DECLARE(apr_status_t) apreq_bake2_cookie(const apreq_cookie_t *c, +APREQ_DECLARE(apr_status_t) apreq_cookie_bake2(const apreq_cookie_t *c, void *env) { char *s = apreq_cookie_as_string(apreq_env_pool(env),c); ==================================================================== changes the definitions in apreq_cookie.c to agree with the declarations in apreq_cookie.h. -- best regards, randy kobes