summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Kew <niq@apache.org>2005-12-06 00:54:29 +0000
committerNick Kew <niq@apache.org>2005-12-06 00:54:29 +0000
commit12164497e957a7e490cbe560e8e47576fd4faaf1 (patch)
tree6ec63699ebb42fa30d5f4b75e0bab0f6ffc987ac
parent8c9f959b533b2fd1e942db9da02b32ac3be0e5d7 (diff)
downloadhttpd-12164497e957a7e490cbe560e8e47576fd4faaf1.tar.gz
Fix documentation bugs
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@354248 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/mod/mod_authn_dbd.xml8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/manual/mod/mod_authn_dbd.xml b/docs/manual/mod/mod_authn_dbd.xml
index 0296eaaa36..897dd051a4 100644
--- a/docs/manual/mod/mod_authn_dbd.xml
+++ b/docs/manual/mod/mod_authn_dbd.xml
@@ -101,7 +101,6 @@ DBDExptime 60</code>
<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 @@ DBDExptime 60</code>
<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>