]> granicus.if.org Git - apache/commitdiff
* Fix comment typo as noticed by jorton
authorRuediger Pluem <rpluem@apache.org>
Wed, 12 Jan 2011 13:32:53 +0000 (13:32 +0000)
committerRuediger Pluem <rpluem@apache.org>
Wed, 12 Jan 2011 13:32:53 +0000 (13:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1058133 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_io.c

index 4ccb3ced1a6c135ff5fa29f41780a9531a9b0be7..d51475989bc18499bc0f63d5411e5205ce2ae885 100644 (file)
@@ -757,7 +757,7 @@ static apr_status_t ssl_io_input_getline(bio_filter_in_ctx_t *inctx,
 
         if (status != APR_SUCCESS) {
             if (APR_STATUS_IS_EAGAIN(status) && (*len > 0)) {
-                /* Safe the part of the line we already got */
+                /* Save the part of the line we already got */
                 char_buffer_write(&inctx->cbuf, buf, *len);
             }
             return status;
@@ -787,7 +787,7 @@ static apr_status_t ssl_io_input_getline(bio_filter_in_ctx_t *inctx,
         *len = bytes;
     }
     else {
-        /* Safe the part of the line we already got */
+        /* Save the part of the line we already got */
         char_buffer_write(&inctx->cbuf, buf, *len);
     }