You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2005/12/06 01:56:24 UTC

svn commit: r354249 - /httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authn_dbd.xml

Author: niq
Date: Mon Dec  5 16:56:19 2005
New Revision: 354249

URL: http://svn.apache.org/viewcvs?rev=354249&view=rev
Log:
Fix documentation bugs

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authn_dbd.xml

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authn_dbd.xml
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authn_dbd.xml?rev=354249&r1=354248&r2=354249&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authn_dbd.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_authn_dbd.xml Mon Dec  5 16:56:19 2005
@@ -101,7 +101,6 @@
 <syntax>AuthDBDUserPWQuery <var>query</var></syntax>
 <contextlist><context>directory</context>
 </contextlist>
-<override>AuthConfig</override>
 
 <usage>
     <p>The <directive>AuthDBDUserPWQuery</directive> specifies an
@@ -123,17 +122,16 @@
 <syntax>AuthDBDUserRealmQuery <var>query</var></syntax>
 <contextlist><context>directory</context>
 </contextlist>
-<override>AuthConfig</override>
 
 <usage>
-    <p>The <directive>AuthDBDUserRealmPWQuery</directive> specifies an
+    <p>The <directive>AuthDBDUserRealmQuery</directive> specifies an
     SQL query to look up a password for a specified user and realm.
     The query must take two string (typically SQL varchar) arguments
     (username and realm), and return a single value (encrypted password).
     </p>
     <example>
-    AuthDBDUserRealmPWQuery "SELECT password FROM authn
-                                    WHERE username = %s AND realm = %s"
+    AuthDBDUserRealmQuery "SELECT password FROM authn
+                              WHERE username = %s AND realm = %s"
     </example>
 
 </usage>