You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@apache.org on 2005/09/10 00:10:28 UTC

svn commit: r279893 - /httpd/httpd/trunk/modules/ssl/ssl_engine_kernel.c

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);
     } 
 
     /*