Commit 88b522c1 authored by Christophe Jaillet's avatar Christophe Jaillet
Browse files

Backport r1690137.

Doc and comment fix only

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1690350 13f79535-47bb-0310-9956-ffa450edef68
parent fffe8064
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@
    time with your delimiter which it then remembers and on each subsequent
    call it returns the next token.  Obviously if multiple threads are
    calling it you will have a problem.  Most systems have a reentrant version
    of of the function called <code>strtok_r()</code> where you pass in an
    of the function called <code>strtok_r()</code> where you pass in an
    extra argument which contains an allocated <code>char *</code> which the
    function will use instead of its own static storage for maintaining
    the tokenizing state. If you are using <a href="http://apr.apache.org/"
+1 −1
Original line number Diff line number Diff line
@@ -487,7 +487,7 @@ lower level modules</description>
<usage>
    <p>The <directive module="mod_auth_form">AuthFormMethod</directive> directive specifies
    the name of an HTML field which, if present, will contain the
    mimetype of the request to to submit should login be successful.</p>
    mimetype of the request to submit should login be successful.</p>

    <p>By populating the form with fields described by
    <directive module="mod_auth_form">AuthFormMethod</directive>,
+1 −1
Original line number Diff line number Diff line
@@ -1183,7 +1183,7 @@ ProxyPass "/mirror/foo" "http://backend.example.com"
        like <code>JSESSIONID</code> or <code>PHPSESSIONID</code>,
        and it depends on the backend application server that support sessions.
        If the backend application server uses different name for cookies
        and url encoded id (like servlet containers) use | to to separate them.
        and url encoded id (like servlet containers) use | to separate them.
        The first part is for the cookie the second for the path.<br />
        Available in Apache HTTP Server 2.4.4 and later.
    </td></tr>
+1 −1
Original line number Diff line number Diff line
@@ -629,7 +629,7 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"

                  <dd>The path component of the requested URI,
                  such as "/index.html".  This notably excludes the
                  query string which is available as as its own variable
                  query string which is available as its own variable
                  named <code>QUERY_STRING</code>.</dd>

                  <dt><code>THE_REQUEST</code></dt>
+1 −1
Original line number Diff line number Diff line
@@ -1769,7 +1769,7 @@ AP_DECLARE(char *) ap_make_dirstr_parent(apr_pool_t *p, const char *s);
AP_DECLARE(char *) ap_make_full_path(apr_pool_t *a, const char *dir, const char *f);

/**
 * Test if the given path has an an absolute path.
 * Test if the given path has an absolute path.
 * @param p The pool to allocate from
 * @param dir The directory name
 * @note The converse is not necessarily true, some OS's (Win32/OS2/Netware) have
Loading