Commit ffc75530 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

fix some homophonic issues in comments, as well as some

mispelings found near "its" or "it's"

(helping our 4th grader with homework, couldn't help but
grep)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90173 13f79535-47bb-0310-9956-ffa450edef68
parent 81d04137
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@
    - The proper setting for SIGPIPE is SIG_IGN, if user code changes it
        for any of their own processing, it must be restored to SIG_IGN
	prior to executing or returning to any apache code.
    TODO: add SIGPIPE debugging check somewhere to make sure its SIG_IGN
    TODO: add SIGPIPE debugging check somewhere to make sure it's SIG_IGN
*/

/**
+1 −1
Original line number Diff line number Diff line
@@ -320,7 +320,7 @@ extern "C" {
 *   APEXIT_INIT:
 *     A fatal error arising during the server's init sequence
 *   APEXIT_CHILDINIT:
 *     The child died during it's init sequence
 *     The child died during its init sequence
 *   APEXIT_CHILDFATAL:
 *     A fatal error, resulting in the whole server aborting.
 *     If a child exits with this error, the parent process
+1 −1
Original line number Diff line number Diff line
@@ -713,7 +713,7 @@ static const command_rec digest_cmds[] =

/*
 * Get the client given its client number (the key). Returns the entry,
 * or NULL if its not found.
 * or NULL if it's not found.
 *
 * Access to the list itself is synchronized via locks. However, access
 * to the entry returned by get_client() is NOT synchronized. This means
+2 −2
Original line number Diff line number Diff line
@@ -459,7 +459,7 @@ apr_status_t isapi_handler (request_rec *r)
            return HTTP_INTERNAL_SERVER_ERROR;
        }

        /* Although its not to spec, IIS seems to null-terminate
        /* Although it's not to spec, IIS seems to null-terminate
         * its lpdData string. So we will too.
         */
        if (res == 0)
@@ -520,7 +520,7 @@ apr_status_t isapi_handler (request_rec *r)
                if (WaitForSingleObject(cid->complete, isa->timeout)
                        == WAIT_TIMEOUT) {
                    /* TODO: Now what... if this hung, then do we kill our own
                     * thread to force it's death?  For now leave timeout = -1
                     * thread to force its death?  For now leave timeout = -1
                     */
                }
            }
+1 −1
Original line number Diff line number Diff line
@@ -2087,7 +2087,7 @@ static int apply_rewrite_rule(request_rec *r, rewriterule_entry *p,
     *  Finally we had to remember if a MIME-type should be
     *  forced for this URL (`RewriteRule .. .. [T=<type>]')
     *  Later in the API processing phase this is forced by our
     *  MIME API-hook function. This time its no problem even for
     *  MIME API-hook function. This time it's no problem even for
     *  the per-directory context (where the MIME-type hook was
     *  already processed) because a sub-request happens ;-)
     */
Loading