Return-Path: Delivered-To: apmail-httpd-test-dev-archive@httpd.apache.org Received: (qmail 94718 invoked by uid 500); 14 Jan 2003 15:35:49 -0000 Mailing-List: contact test-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-dev@httpd.apache.org Received: (qmail 94655 invoked from network); 14 Jan 2003 15:35:48 -0000 Message-ID: <3E242F34.4090005@apache.org> Date: Tue, 14 Jan 2003 10:39:32 -0500 From: Greg Ames User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020830 MIME-Version: 1.0 To: test-dev@httpd.apache.org Subject: Re: cvs commit: httpd-test/specweb99/specweb99-2.0 mod_specweb99.c References: <20030114150200.93337.qmail@icarus.apache.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N gregames@apache.org wrote: > --- mod_specweb99.c 31 Oct 2002 19:39:04 -0000 1.16 > +++ mod_specweb99.c 14 Jan 2003 15:02:00 -0000 1.17 > @@ -765,8 +765,9 @@ > > line = apr_psprintf(r->pool, "%10d\n", 0); > > - if (apr_file_write_full(f, line, strlen(line), NULL) != APR_SUCCESS) { > - ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server, > + rv = apr_file_write_full(f, line, strlen(line), NULL); > + if (rv != APR_SUCCESS) { > + ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, > "Could not write to post.log '%s'", _my->log_path); Does anyone have a perl script etc. to automatically convert all leading tabs to n blanks? I was thinking of manually de-tabifying in the vicinity of this fix, but it would be better to do the whole thing if I can get my hands on such a tool. Greg