Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 98923 invoked by uid 500); 26 Apr 2002 19:46:42 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 98910 invoked from network); 26 Apr 2002 19:46:42 -0000 X-Curiosity: Killed the Cat X-Huis-aan-Huis-deur-sticker: nee-nee X-Spam: no X-Passed: MX on Gandalf.WebWeaving.org Fri, 26 Apr 2002 21:46:23 +0200 (CEST) and masked X-No-Spam: Neither the receipients nor the senders email address(s) are to be used for Unsolicited (Commercial) Email without the explicit written consent of either party; as a per-message fee is incurred for inbound and outbound traffic to the originator. Date: Fri, 26 Apr 2002 21:46:23 +0200 (CEST) From: dirkx@covalent.net X-X-Sender: dirkx@mobile.webweaving.org To: dev@httpd.apache.org Subject: Re: [PATCH] mod_auth_anon 1.3 In-Reply-To: <20020426214824.B62393@io.stderr.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N +1 - especially for 2.0 where we do not care about breaking processing scripts and what not. Dw -- Dirk-Willem van Gulik On Fri, 26 Apr 2002, Thomas Eibner wrote: > > After a short discussion on #apache we came to the conclusion that the > way mod_auth_anon logs the "passwd" used to access the uri is kind of > annoying. So instead of logging to the error log we decided it might > be smart if it used the ident field. > > use or toss - if used Rich Bowen promised to update the docs for the > module. > > Index: src/modules/standard/mod_auth_anon.c > =================================================================== > RCS file: /home/cvspublic/apache-1.3/src/modules/standard/mod_auth_anon.c,v > retrieving revision 1.43 > diff -r1.43 mod_auth_anon.c > 256,258c256 > < ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, r, > < "Anonymous: Passwd <%s> Accepted", > < sent_pw ? sent_pw : "\'none\'"); > --- > > r->connection->remote_logname = ap_pstrdup(r->pool, sent_pw ? sent_pw : "\'none\'"); > >