You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2015/10/06 19:24:45 UTC

svn commit: r1707093 - /httpd/httpd/trunk/server/eor_bucket.c

Author: ylavic
Date: Tue Oct  6 17:24:45 2015
New Revision: 1707093

URL: http://svn.apache.org/viewvc?rev=1707093&view=rev
Log:
eor_bucket: follow up to r1707084: fix comment.

Modified:
    httpd/httpd/trunk/server/eor_bucket.c

Modified: httpd/httpd/trunk/server/eor_bucket.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/eor_bucket.c?rev=1707093&r1=1707092&r2=1707093&view=diff
==============================================================================
--- httpd/httpd/trunk/server/eor_bucket.c (original)
+++ httpd/httpd/trunk/server/eor_bucket.c Tue Oct  6 17:24:45 2015
@@ -96,7 +96,7 @@ static apr_status_t eor_bucket_copy(apr_
     *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;