/[Apache-SVN]/httpd/httpd/trunk/modules/aaa/mod_authn_dbd.c
ViewVC logotype

Diff of /httpd/httpd/trunk/modules/aaa/mod_authn_dbd.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- httpd/httpd/trunk/modules/aaa/mod_authn_dbd.c	2005/10/18 09:01:02	326054
+++ httpd/httpd/trunk/modules/aaa/mod_authn_dbd.c	2005/10/30 00:32:00	329497
@@ -76,10 +76,10 @@
 static const command_rec authn_dbd_cmds[] =
 {
     AP_INIT_TAKE1("AuthDBDUserPWQuery", authn_dbd_prepare,
-                  (void *)APR_OFFSETOF(authn_dbd_conf, user), OR_AUTHCFG,
+                  (void *)APR_OFFSETOF(authn_dbd_conf, user), ACCESS_CONF,
                   "Query used to fetch password for user"),
-    AP_INIT_TAKE1("AuthDBDUserRealmPWQuery", authn_dbd_prepare,
-                  (void *)APR_OFFSETOF(authn_dbd_conf, realm), OR_AUTHCFG,
+    AP_INIT_TAKE1("AuthDBDUserRealmQuery", authn_dbd_prepare,
+                  (void *)APR_OFFSETOF(authn_dbd_conf, realm), ACCESS_CONF,
                   "Query used to fetch password for user+realm"),
     {NULL}
 };
@@ -128,7 +128,7 @@
         if (dbd_password == NULL) {
             dbd_password = apr_dbd_get_entry(dbd->driver, row, 0);
         }
-	/* we can't break out here or row won't get cleaned up */
+        /* we can't break out here or row won't get cleaned up */
     }
 
     if (!dbd_password) {
@@ -186,7 +186,7 @@
         if (dbd_hash == NULL) {
             dbd_hash = apr_dbd_get_entry(dbd->driver, row, 0);
         }
-	/* we can't break out here or row won't get cleaned up */
+        /* we can't break out here or row won't get cleaned up */
     }
 
     if (!dbd_hash) {

 

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2