From: Yann Ylavic Date: Tue, 6 Oct 2015 17:24:45 +0000 (+0000) Subject: eor_bucket: follow up to r1707084: fix comment. X-Git-Tag: 2.5.0-alpha~2751 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4a2158c9bcaee5f7cd2056e166111bfc39d26ca;p=apache 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 --- 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;