Return-Path: Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 98141 invoked by uid 500); 23 Aug 2001 23:55:30 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 98138 invoked from network); 23 Aug 2001 23:55:30 -0000 Received: from h32.sny.collab.net (HELO icarus.apache.org) (64.208.42.42) by h31.sny.collab.net with SMTP; 23 Aug 2001 23:55:30 -0000 Received: (qmail 2163 invoked by uid 1121); 23 Aug 2001 23:49:41 -0000 Date: 23 Aug 2001 23:49:41 -0000 Message-ID: <20010823234941.2162.qmail@icarus.apache.org> From: trawick@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server core.c X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Status: O X-Status: X-Keywords: X-UID: 465 trawick 01/08/23 16:49:41 Modified: server core.c Log: fix fubar with recent commit to ap_core_translate() Revision Changes Path 1.42 +2 -2 httpd-2.0/server/core.c Index: core.c =================================================================== RCS file: /home/cvs/httpd-2.0/server/core.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- core.c 2001/08/23 22:19:49 1.41 +++ core.c 2001/08/23 23:49:41 1.42 @@ -2918,7 +2918,7 @@ != APR_SUCCESS) { return HTTP_FORBIDDEN; } - r->canonical_filename == r->filename; + r->canonical_filename = r->filename; } else { /* @@ -2933,7 +2933,7 @@ != APR_SUCCESS) { return HTTP_FORBIDDEN; } - r->canonical_filename == r->filename; + r->canonical_filename = r->filename; } return OK;