diff options
author | Jeff Trawick <trawick@apache.org> | 2001-08-15 23:11:59 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-08-15 23:11:59 +0200 |
commit | c216c2184a80c7441f53e95e528e5544a2961de6 (patch) | |
tree | 9d8a8c12b2fa0ad06e6e1c628056e5f3b9f9b541 /server/request.c | |
parent | Proxy now works as a DSO on AIX. (diff) | |
download | apache2-c216c2184a80c7441f53e95e528e5544a2961de6.tar.xz apache2-c216c2184a80c7441f53e95e528e5544a2961de6.zip |
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
Diffstat (limited to '')
-rw-r--r-- | server/request.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/request.c b/server/request.c index a7e67d194d..d88abe0bea 100644 --- a/server/request.c +++ b/server/request.c @@ -330,7 +330,7 @@ static int get_path_info(request_rec *r) /* ### We no longer need the test ap_os_is_filename_valid() here * since apr_stat isn't a posix thing - it's apr_stat's responsibility - * to handle whatever path string arrives at it's door - by platform + * to handle whatever path string arrives at its door - by platform * and volume restrictions as applicable... * TODO: This code becomes even simpler if apr_stat grows * an APR_PATHINCOMPLETE result to indicate that we are staring at @@ -925,9 +925,9 @@ AP_DECLARE(int) directory_walk(request_rec *r) */ /* We choose apr_lstat here, rather that apr_stat, so that we - * capture this path object rather than it's target. We will + * capture this path object rather than its target. We will * replace the info with our target's info below. We especially - * want the name of this 'link' object, not the name of it's + * want the name of this 'link' object, not the name of its * target, if we are fixing case. */ rv = apr_lstat(&r->finfo, r->filename, APR_FINFO_MIN | APR_FINFO_NAME, r->pool); |