Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 41753 invoked from network); 9 Sep 2005 22:10:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Sep 2005 22:10:31 -0000 Received: (qmail 88189 invoked by uid 500); 9 Sep 2005 22:10:30 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 88142 invoked by uid 500); 9 Sep 2005 22:10:29 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 88128 invoked by uid 99); 9 Sep 2005 22:10:29 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 09 Sep 2005 15:10:29 -0700 Received: (qmail 41698 invoked by uid 65534); 9 Sep 2005 22:10:29 -0000 Message-ID: <20050909221029.41696.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r279893 - /httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c Date: Fri, 09 Sep 2005 22:10:28 -0000 To: cvs@httpd.apache.org From: dreid@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dreid Date: Fri Sep 9 15:10:25 2005 New Revision: 279893 URL: http://svn.apache.org/viewcvs?rev=279893&view=rev Log: Record the fact that we failed to set the username as requested. This is useful to know as the most likely cause will be a misconfiguration and so should be easily fixed, but to be fixed it's helpful if you're aware it needs fixed! Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c?rev=279893&r1=279892&r2=279893&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c (original) +++ httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c Fri Sep 9 15:10:25 2005 @@ -753,6 +753,9 @@ r, (char *)dc->szUserName); if (val && val[0]) r->user = val; + else + ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, + "Failed to set r->user to '%s'", dc->szUserName); } /*