Author: hartmannathan
Date: Thu Jun 5 01:47:29 2025
New Revision: 1926135
URL: http://svn.apache.org/viewvc?rev=1926135&view=rev
Log:
Rename static function that had typo in its name
* src/incoming.c
(http1_enqueue_reponse): Rename to http1_enqueue_response.
(serf__incoming_request_create): Update the call site.
Found with help of codespell.
Modified:
serf/trunk/src/incoming.c
Modified: serf/trunk/src/incoming.c
URL:
http://svn.apache.org/viewvc/serf/trunk/src/incoming.c?rev=1926135&r1=1926134&r2=1926135&view=diff
==============================================================================
--- serf/trunk/src/incoming.c (original)
+++ serf/trunk/src/incoming.c Thu Jun 5 01:47:29 2025
@@ -96,7 +96,7 @@ static apr_status_t response_finished(vo
return APR_SUCCESS;
}
-static apr_status_t http1_enqueue_reponse(serf_incoming_request_t *request,
+static apr_status_t http1_enqueue_response(serf_incoming_request_t *request,
void *enqueue_baton,
serf_bucket_t *bucket)
{
@@ -242,7 +242,7 @@ serf_incoming_request_t *serf__incoming_
apr_pool_create(&rq->pool, client->pool);
rq->incoming = client;
- rq->enqueue_response = http1_enqueue_reponse;
+ rq->enqueue_response = http1_enqueue_response;
rq->enqueue_baton = rq;
return rq;