Return-Path: Delivered-To: new-httpd-archive@hyperreal.org Received: (qmail 4673 invoked by uid 6000); 16 Dec 1997 00:38:34 -0000 Received: (qmail 4666 invoked from network); 16 Dec 1997 00:38:33 -0000 Received: from valis.worldgate.com (marcs@198.161.84.2) by taz.hyperreal.org with SMTP; 16 Dec 1997 00:38:33 -0000 Received: from localhost (marcs@localhost) by valis.worldgate.com (8.8.7/8.8.7) with SMTP id RAA23164 for ; Mon, 15 Dec 1997 17:38:29 -0700 (MST) Date: Mon, 15 Dec 1997 17:38:27 -0700 (MST) From: Marc Slemko To: Apache - BYOC Subject: hey Dean, are you sure you indented mod_proxy? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org Why do I see: /* Save the path - it will be re-appended for the redirection later */ path = strchr(&url_copy[2], '/'); if (path != NULL) ++path; /* leading '/' will be overwritten by proxy_cano n_netloc */ else path = ""; ? (ugly long comments all over) If I indent it here it goes to: /* Save the path - it will be re-appended for the redirection later */ path = strchr(&url_copy[2], '/'); if (path != NULL) ++path; /* leading '/' will be overwritten by * proxy_canon_netloc */ else path = "";