[cpp-sp COMMIT] /branches/REL_2/apache/mod_shib.cpp

noreply at shibboleth.net noreply at shibboleth.net
Mon Jun 3 21:53:21 EDT 2013


Author: scantor
Date: Mon Jun  3 21:53:21 2013
New Revision: 3861

URL: http://svn.shibboleth.net/view/cpp-sp?rev=3861&view=rev
Log:
Adjust fix for SSPCPP-570, let empty r->user through.

Modified:
    branches/REL_2/apache/mod_shib.cpp

Modified: branches/REL_2/apache/mod_shib.cpp
URL: http://svn.shibboleth.net/view/cpp-sp/branches/REL_2/apache/mod_shib.cpp?rev=3861&r1=3860&r2=3861&view=diff
==============================================================================
--- branches/REL_2/apache/mod_shib.cpp (original)
+++ branches/REL_2/apache/mod_shib.cpp Mon Jun  3 21:53:21 2013
@@ -1620,7 +1620,7 @@
         return shib_session_check_authz(r, require_line, nullptr);
     }
 
-    if (!r->user || !*r->user) {
+    if (!r->user) {
         return AUTHZ_DENIED_NO_USER;
     }
 



More information about the commits mailing list