summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2015-10-06 17:24:45 +0000
committerYann Ylavic <ylavic@apache.org>2015-10-06 17:24:45 +0000
commite4a2158c9bcaee5f7cd2056e166111bfc39d26ca (patch)
treef428f19c70cafb1cdb761491de80dbc627abb714
parent34e4c454ca478606f629cf38d0f00b4d70559b5d (diff)
downloadhttpd-e4a2158c9bcaee5f7cd2056e166111bfc39d26ca.tar.gz
eor_bucket: follow up to r1707084: fix comment.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1707093 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/eor_bucket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/eor_bucket.c b/server/eor_bucket.c
index c7f1862281..2726d6bdec 100644
--- a/server/eor_bucket.c
+++ b/server/eor_bucket.c
@@ -96,7 +96,7 @@ static apr_status_t eor_bucket_copy(apr_bucket *a, apr_bucket **b)
*b = apr_bucket_alloc(sizeof(**b), a->list); /* XXX: check for failure? */
**b = *a;
- /* we don't wan't the request to be destroyed twice */
+ /* We don't want the request to be destroyed more than once. */
(*b)->data = NULL;
return APR_SUCCESS;