You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2008/05/01 23:59:13 UTC

svn commit: r652683 - /httpd/httpd/trunk/modules/aaa/mod_auth_form.c

Author: minfrin
Date: Thu May  1 14:59:13 2008
New Revision: 652683

URL: http://svn.apache.org/viewvc?rev=652683&view=rev
Log:
Remove C++ style comments.

Modified:
    httpd/httpd/trunk/modules/aaa/mod_auth_form.c

Modified: httpd/httpd/trunk/modules/aaa/mod_auth_form.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_auth_form.c?rev=652683&r1=652682&r2=652683&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_auth_form.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_auth_form.c Thu May  1 14:59:13 2008
@@ -693,9 +693,7 @@
     if (site && sent_user && sent_hash) {
         const char *hash = ap_md5(r->pool,
                       (unsigned char *) apr_pstrcat(r->pool, sent_user, ":", site, NULL));
-        
-//        if (APR_SUCCESS == apr_password_validate(apr_pstrcat(r->pool, sent_user, ":", site, NULL),
-//                                                 sent_hash)) {
+
         if (!strcmp(sent_hash, hash)) {
             return OK;
         }