]> granicus.if.org Git - apache/commitdiff
eor_bucket: follow up to r1707084: fix comment.
authorYann Ylavic <ylavic@apache.org>
Tue, 6 Oct 2015 17:24:45 +0000 (17:24 +0000)
committerYann Ylavic <ylavic@apache.org>
Tue, 6 Oct 2015 17:24:45 +0000 (17:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1707093 13f79535-47bb-0310-9956-ffa450edef68

server/eor_bucket.c

index c7f1862281a988f78a9ee9f85120d994963c72c9..2726d6bdec8e69caeeaf6b398f7fc58c862a4981 100644 (file)
@@ -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;