Return-Path: Delivered-To: apmail-httpd-modules-dev-archive@locus.apache.org Received: (qmail 96182 invoked from network); 16 Jan 2008 00:44:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Jan 2008 00:44:10 -0000 Received: (qmail 46925 invoked by uid 500); 16 Jan 2008 00:43:58 -0000 Delivered-To: apmail-httpd-modules-dev-archive@httpd.apache.org Received: (qmail 46879 invoked by uid 500); 16 Jan 2008 00:43:58 -0000 Mailing-List: contact modules-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: modules-dev@httpd.apache.org Delivered-To: mailing list modules-dev@httpd.apache.org Received: (qmail 46838 invoked by uid 99); 16 Jan 2008 00:43:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2008 16:43:58 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of cesarbs@gmail.com designates 64.233.166.180 as permitted sender) Received: from [64.233.166.180] (HELO py-out-1112.google.com) (64.233.166.180) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jan 2008 00:43:32 +0000 Received: by py-out-1112.google.com with SMTP id d37so89235pye.29 for ; Tue, 15 Jan 2008 16:43:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=T43ouU8UAeUEErppTRCO1dNNWv2dLXsDBgolB2ZmcOI=; b=lyMrud0RrSGc6zrpCNJpwKDpGPBSJdcLY/qhmMz3oA9NpdRegottQUBrLOov3SPkiCMqInnknz7QvTqBFulMCYYw6tqn2B4nYmny2m5KoPgxHaPRGfHtAKtUIISlK6WIPdhtXgdiu1+vcCtVk9PM5xPecnJK1bvWaov6KHmx0JI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=oqv1xrph21i7RJ9hwNcOFjh02NZKREimKLFtMVStNngkwt1SARhas3S5w/X6eczbsCEv6ivpVJ+ZHDVvGJM69VIPbxv8K2vEYteWd5NUvgNmP/ONhi3EOO98O3c/tVQrLC0xLNn0nNbel5OcZZFXOSqpMRNJ4vP4P2Xrxmyd66U= Received: by 10.35.67.18 with SMTP id u18mr119130pyk.64.1200444217455; Tue, 15 Jan 2008 16:43:37 -0800 (PST) Received: by 10.35.75.18 with HTTP; Tue, 15 Jan 2008 16:43:37 -0800 (PST) Message-ID: Date: Tue, 15 Jan 2008 22:43:37 -0200 From: "=?ISO-8859-1?Q?C=E9sar_Leonardo_Blum_Silveira?=" To: modules-dev@httpd.apache.org Subject: Fixups running twice MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Hello, I have written two test modules which only write messages to the error_log. I have the following fixups on them: mod_mod1.c: static int mod1_fixups(request_rec *r) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "mod1_fixups"); return OK; } mod_mod2.c: static int mod1_fixups(request_rec *r) { ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "mod1_fixups"); return OK; } For some reason which I still don't know, those fixups are being run twice per request: [Tue Jan 15 22:41:07 2008] [error] [client 127.0.0.1] mod1_fixups [Tue Jan 15 22:41:07 2008] [error] [client 127.0.0.1] mod2_fixups [Tue Jan 15 22:41:07 2008] [error] [client 127.0.0.1] mod1_fixups [Tue Jan 15 22:41:07 2008] [error] [client 127.0.0.1] mod2_fixups Is that the normal fixups behaviour? Thank you, --=20 C=E9sar L. B. Silveira