You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2014/08/25 23:32:43 UTC

svn commit: r1620461 - /httpd/httpd/trunk/modules/cache/mod_cache.c

Author: rjung
Date: Mon Aug 25 21:32:43 2014
New Revision: 1620461

URL: http://svn.apache.org/r1620461
Log:
Fix typo in comment.

Modified:
    httpd/httpd/trunk/modules/cache/mod_cache.c

Modified: httpd/httpd/trunk/modules/cache/mod_cache.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache.c?rev=1620461&r1=1620460&r2=1620461&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache.c Mon Aug 25 21:32:43 2014
@@ -1203,7 +1203,7 @@ static apr_status_t cache_save_filter(ap
         apr_table_unset(r->headers_in, "If-Range");
         apr_table_unset(r->headers_in, "If-Unmodified-Since");
 
-        /* Currentlty HTTP_NOT_MODIFIED, and after the redirect, handlers won't think to set status to HTTP_OK */
+        /* Currently HTTP_NOT_MODIFIED, and after the redirect, handlers won't think to set status to HTTP_OK */
         r->status = HTTP_OK; 
         ap_internal_redirect(r->unparsed_uri, r);