]> granicus.if.org Git - apache/commitdiff
Remove C++ style comments.
authorGraham Leggett <minfrin@apache.org>
Thu, 1 May 2008 21:59:13 +0000 (21:59 +0000)
committerGraham Leggett <minfrin@apache.org>
Thu, 1 May 2008 21:59:13 +0000 (21:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@652683 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_auth_form.c

index c1186d56f064c96487dc4711d01b14dedc597c8d..d851fa2e9cf49dafd2aa5e57f16372f13d4c7b63 100644 (file)
@@ -693,9 +693,7 @@ static int check_site(request_rec * r, const char *site, const char *sent_user,
     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;
         }