Commit ab7be995 authored by Nick Kew's avatar Nick Kew
Browse files

Fix documentation bugs


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@354248 13f79535-47bb-0310-9956-ffa450edef68
parent ba305e12
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -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,16 +122,15 @@ 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
    AuthDBDUserRealmQuery "SELECT password FROM authn
                              WHERE username = %s AND realm = %s"
    </example>