Author: hartmannathan
Date: Thu Jun  5 01:19:28 2025
New Revision: 1926128

URL: http://svn.apache.org/viewvc?rev=1926128&view=rev
Log:
Fix some spelling erorrs in comments

Comments only; no functional changes. Found with help of codespell.

* auth/auth.c
  (serf__handle_auth_response): Ditto.

* auth/auth_spnego.c
  (gss_api_auth_state): Ditto.

* buckets/deflate_buckets.c
  (serf_deflate_refill): Ditto.

* buckets/fcgi_buckets.c
  (serf__bucket_fcgi_unframe_read_info): Ditto.

* buckets/hpack_buckets.c
  (): Ditto

* buckets/http2_frame_buckets.c
  (serf__bucket_http2_unframe_read_info): Ditto.

* buckets/request_buckets.c
  (serf_request_read_iovec): Ditto.

* protocols/http2_stream.c
  (stream_send_headers): Ditto.

* serf.h
  (serf_incoming_create,
   serf_connection_request_prioritize,
   struct serf_log_layout_t,
   serf_debug__bucket_alloc_check): Ditto.

* serf_bucket_types.h
  (serf_ssl_negotiate_protocol,
   serf_bucket_split_create): Ditto.

* serf_bucket_util.h
  (serf_default_destroy): Ditto.

* serf_private.h
  (struct serf_incoming_t,
   enum serf__connection_state_t,
   serf_connection_t,
   serf__handle_auth_response,
   serf__context_progress_delta): Ditto.

* src/context.c
  (serf_error_string): Ditto.

* src/incoming.c
  (serf__incoming_update_pollset): Ditto.

* src/outgoing.c
  (request_pending): Ditto.

* src/pump.c
  (serf_pump__data_pending): Ditto.

* src/ssltunnel.c
  (struct req_ctx_t,
   handle_response): Ditto.

* test/MockHTTPinC/MockHTTP.c
  (resp_set_repeat_pattern): Ditto.

* test/MockHTTPinC/MockHTTP.h
  (): Ditto.

* test/MockHTTPinC/MockHTTP_server.c
  (setupTCPServer,
   respToString,
   mhPushRequest,
   status_from_ssl): Ditto.

* test/test_context.c
  (): Ditto.

* test/test_internal.c
  (test_header_buckets_remove): Ditto.

* test/test_ssl.c
  (test_ssl_ocsp_verify_response_no_signer): Ditto.

Modified:
    serf/trunk/auth/auth.c
    serf/trunk/auth/auth_spnego.c
    serf/trunk/buckets/deflate_buckets.c
    serf/trunk/buckets/fcgi_buckets.c
    serf/trunk/buckets/hpack_buckets.c
    serf/trunk/buckets/http2_frame_buckets.c
    serf/trunk/buckets/request_buckets.c
    serf/trunk/protocols/http2_stream.c
    serf/trunk/serf.h
    serf/trunk/serf_bucket_types.h
    serf/trunk/serf_bucket_util.h
    serf/trunk/serf_private.h
    serf/trunk/src/context.c
    serf/trunk/src/incoming.c
    serf/trunk/src/outgoing.c
    serf/trunk/src/pump.c
    serf/trunk/src/ssltunnel.c
    serf/trunk/test/MockHTTPinC/MockHTTP.c
    serf/trunk/test/MockHTTPinC/MockHTTP.h
    serf/trunk/test/MockHTTPinC/MockHTTP_server.c
    serf/trunk/test/test_context.c
    serf/trunk/test/test_internal.c
    serf/trunk/test/test_ssl.c

Modified: serf/trunk/auth/auth.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/auth/auth.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/auth/auth.c (original)
+++ serf/trunk/auth/auth.c Thu Jun  5 01:19:28 2025
@@ -360,7 +360,7 @@ apr_status_t serf__handle_auth_response(
 
         if (resp_status) {
             /* If there was an error in the final step of the authentication,
-               consider the reponse body as invalid and discard it. */
+               consider the response body as invalid and discard it. */
             status = discard_body(response);
             *consumed_response = true;
 

Modified: serf/trunk/auth/auth_spnego.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/auth/auth_spnego.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/auth/auth_spnego.c (original)
+++ serf/trunk/auth/auth_spnego.c Thu Jun  5 01:19:28 2025
@@ -117,7 +117,7 @@ typedef enum gss_api_auth_state {
      To keep things simple, keep the connection in one by one mode.
      (otherwise we'd have to keep a queue of gssapi context objects to match
       the Negotiate header of the response with the session initiated by the
-      mathing request).
+      matching request).
      This state is an final state.
    STATEFUL: alright, we have authenticated the connection and for the server
      that is enough. Don't add an Authorization header to new requests.

Modified: serf/trunk/buckets/deflate_buckets.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/buckets/deflate_buckets.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/buckets/deflate_buckets.c (original)
+++ serf/trunk/buckets/deflate_buckets.c Thu Jun  5 01:19:28 2025
@@ -261,7 +261,7 @@ static apr_status_t serf_deflate_refill(
         if (APR_STATUS_IS_EOF(ctx->stream_status))
             flush_v = Z_FINISH;
 
-        /* Make valgrind happy and explictly initialize next_in to specific
+        /* Make valgrind happy and explicitly initialize next_in to specific
           * value for empty buffer. */
         if (private_len) {
             ctx->zstream.next_in = (unsigned char*)private_data;

Modified: serf/trunk/buckets/fcgi_buckets.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/buckets/fcgi_buckets.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/buckets/fcgi_buckets.c (original)
+++ serf/trunk/buckets/fcgi_buckets.c Thu Jun  5 01:19:28 2025
@@ -132,7 +132,7 @@ apr_status_t serf__bucket_fcgi_unframe_r
         else if (APR_STATUS_IS_EOF(status))
             status = SERF_ERROR_TRUNCATED_STREAM;
 
-        /* If we hava a zero-length frame we have to call the eof callback
+        /* If we have a zero-length frame we have to call the eof callback
            now, as the read operations will just shortcut to APR_EOF */
         if (ctx->payload_remaining == 0 && ctx->end_of_frame)
         {

Modified: serf/trunk/buckets/hpack_buckets.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/buckets/hpack_buckets.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/buckets/hpack_buckets.c (original)
+++ serf/trunk/buckets/hpack_buckets.c Thu Jun  5 01:19:28 2025
@@ -300,7 +300,7 @@ struct serf_hpack_table_t
     apr_size_t rl_sys_table_size;
 };
 
-/* The staticly defined list of pre-encoded entries. All numbers above
+/* The statically defined list of pre-encoded entries. All numbers above
    this list are dynamically defined, so some new standard is needed to
    extend this list */
 static const serf_hpack_entry_t hpack_static_table[] =

Modified: serf/trunk/buckets/http2_frame_buckets.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/buckets/http2_frame_buckets.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/buckets/http2_frame_buckets.c (original)
+++ serf/trunk/buckets/http2_frame_buckets.c Thu Jun  5 01:19:28 2025
@@ -173,7 +173,7 @@ serf__bucket_http2_unframe_read_info(ser
         else if (APR_STATUS_IS_EOF(status))
             status = SERF_ERROR_TRUNCATED_STREAM;
 
-        /* If we hava a zero-length frame we have to call the eof callback
+        /* If we have a zero-length frame we have to call the eof callback
             now, as the read operations will just shortcut to APR_EOF */
         if (ctx->payload_remaining == 0 && ctx->end_of_frame) {
             apr_status_t cb_status;

Modified: serf/trunk/buckets/request_buckets.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/buckets/request_buckets.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/buckets/request_buckets.c (original)
+++ serf/trunk/buckets/request_buckets.c Thu Jun  5 01:19:28 2025
@@ -201,7 +201,7 @@ static apr_status_t serf_request_read_io
 static serf_bucket_t * serf_request_read_bucket(serf_bucket_t *bucket,
                                                 const serf_bucket_type_t *type)
 {
-    /* Luckily we don't have to be affraid for bucket_v2 tests here */
+    /* Luckily we don't have to be afraid for bucket_v2 tests here */
     serialize_data(bucket);
 
     return serf_bucket_read_bucket(bucket, type);

Modified: serf/trunk/protocols/http2_stream.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/protocols/http2_stream.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/protocols/http2_stream.c (original)
+++ serf/trunk/protocols/http2_stream.c Thu Jun  5 01:19:28 2025
@@ -118,7 +118,7 @@ static apr_status_t stream_send_headers(
 
     /* And now schedule the packet for writing. Note that it is required
     by the HTTP/2 spec to send HEADERS and CONTINUATION directly after
-    each other, without other frames inbetween. */
+    each other, without other frames in between. */
     while (hpack != NULL)
     {
         serf_bucket_t *next;

Modified: serf/trunk/serf.h
URL: 
http://svn.apache.org/viewvc/serf/trunk/serf.h?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/serf.h (original)
+++ serf/trunk/serf.h Thu Jun  5 01:19:28 2025
@@ -601,7 +601,7 @@ apr_status_t serf_incoming_create(
  * Creates a new client associated with @a ctx for socket @a insock. The client
  * takes responsibility for @a client_pool and will destroy it after the
  * connection is closed. Typically this would be the same pool as where the
- * incomming socket @a insock is allocated in.
+ * incoming socket @a insock is allocated in.
  *
  * This non-standard behavior is needed to support listeners inside the same
  * @a ctx instance without leaking memory for each used connections. Callers
@@ -804,7 +804,7 @@ void serf_connection_request_prioritize(
 
 /**
  * Returns detected network latency for the @a conn connection. Negative
- * value means that latency is unknwon.
+ * value means that latency is unknown.
  */
 apr_interval_time_t serf_connection_get_latency(serf_connection_t *conn);
 
@@ -1489,7 +1489,7 @@ typedef struct serf_log_layout_t serf_lo
  * Create a stream output for log info. This can be used with one of the
  * standard streams stderr or stdout.
  * LAYOUT should be SERF_LOG_DEFAULT_LAYOUT (there's no alternative for now).
- * The lifetime of POOL should be atleast the same as that of CTX, but it can
+ * The lifetime of POOL should be at least the same as that of CTX, but it can
  * be used by multiple contexts.
  *
  * @since New in 1.4.
@@ -1795,7 +1795,7 @@ void serf_debug__bucket_alloc_check(
  * Values are returned in @a major, @a minor, and @a patch.
  *
  * Applications will want to use this function to verify compatibility,
- * expecially while serf has not reached a 1.0 milestone. APIs and
+ * especially while serf has not reached a 1.0 milestone. APIs and
  * semantics may change drastically until the library hits 1.0.
  */
 void serf_lib_version(

Modified: serf/trunk/serf_bucket_types.h
URL: 
http://svn.apache.org/viewvc/serf/trunk/serf_bucket_types.h?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/serf_bucket_types.h (original)
+++ serf/trunk/serf_bucket_types.h Thu Jun  5 01:19:28 2025
@@ -671,7 +671,7 @@ typedef apr_status_t (*serf_ssl_protocol
  *
  * Returns APR_ENOTIMPL when the ssl library doesn't implement ALPN.
  *
- * If successfull CALLBACK will be called as soon as the protocol is negotiated
+ * If successful CALLBACK will be called as soon as the protocol is negotiated
  * or directly after the secured stream is connected.
  *
  * @since New in 1.4.
@@ -1042,14 +1042,14 @@ serf_bucket_t *serf_bucket_prefix_create
 /**
  * Creates two buckets, *HEAD and *TAIL, which together contain the output
  * of STREAM. If there is enough data in STREAM, HEAD will be a bucket of at
- * least MIN_CHUNK_SIZE and will never be larget than MAX_CHUNK_SIZE.
+ * least MIN_CHUNK_SIZE and will never be larger than MAX_CHUNK_SIZE.
  *
  * If STREAM is at EOF before MIN_CHUNK_SIZE, HEAD will contain the data,
  * while TAIL is immediately at EOF.
  *
  * HEAD and TAIL will make sure that data read from TAIL will not break the
  * data availability promises on HEAD. Passing an existing tail of this
- * function as new stream may be handled specificaly, but the read promises
+ * function as new stream may be handled specifically, but the read promises
  * on all nodes ahead of stream will still hold.
  *
  * HEAD and TAIL are allocated in STREAM->allocator. STREAM will be

Modified: serf/trunk/serf_bucket_util.h
URL: 
http://svn.apache.org/viewvc/serf/trunk/serf_bucket_util.h?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/serf_bucket_util.h (original)
+++ serf/trunk/serf_bucket_util.h Thu Jun  5 01:19:28 2025
@@ -112,7 +112,7 @@ apr_status_t serf_default_peek(
 /**
  * Default implementation of the @see destroy functionality.
  *
- * This function will return the @a bucket to its allcoator.
+ * This function will return the @a bucket to its allocator.
  */
 void serf_default_destroy(
     serf_bucket_t *bucket);

Modified: serf/trunk/serf_private.h
URL: 
http://svn.apache.org/viewvc/serf/trunk/serf_private.h?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/serf_private.h (original)
+++ serf/trunk/serf_private.h Thu Jun  5 01:19:28 2025
@@ -514,7 +514,7 @@ struct serf_incoming_t {
     serf_incoming_request_t *current_request; /* For HTTP/1 */
 };
 
-/* States for the different stages in the lifecyle of a connection. */
+/* States for the different stages in the lifecycle of a connection. */
 typedef enum {
     SERF_CONN_INIT,             /* no socket created yet */
     SERF_CONN_SETUP_SSLTUNNEL,  /* ssl tunnel being setup, no requests sent */
@@ -591,10 +591,10 @@ struct serf_connection_t {
        only. */
     int pipelining;
 
-    /* Host url, path ommitted, syntax: https://svn.apache.org . */
+    /* Host url, path omitted, syntax: https://svn.apache.org . */
     const char *host_url;
 
-    /* Exploded host url, path ommitted. Only scheme, hostinfo, hostname &
+    /* Exploded host url, path omitted. Only scheme, hostinfo, hostname &
        port values are filled in. */
     apr_uri_t host_info;
 
@@ -717,11 +717,11 @@ apr_status_t serf__handle_auth_response(
    when this is the first connection to the server.
    TODO: The serf__authn_info_t objects are allocated in the context pool, so
    a context that's used to connect to many different servers using Basic or
-   Digest authencation will hold on to many objects indefinitely. We should be
+   Digest authentication will hold on to many objects indefinitely. We should 
be
    able to cleanup stale objects from time to time. */
 serf__authn_info_t *serf__get_authn_info_for_server(serf_connection_t *conn);
 
-/* fromt context.c */
+/* from context.c */
 void serf__context_progress_delta(void *progress_baton, apr_off_t read,
                                   apr_off_t written);
 

Modified: serf/trunk/src/context.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/src/context.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/src/context.c (original)
+++ serf/trunk/src/context.c Thu Jun  5 01:19:28 2025
@@ -381,7 +381,7 @@ const char *serf_error_string(apr_status
     case SERF_ERROR_EMPTY_STREAM:
         return "The stream is empty";
     case SERF_ERROR_EMPTY_READ:
-        return "A successfull read of nothing occured";
+        return "A successful read of nothing occurred";
 
     case SERF_ERROR_SSL_COMM_FAILED:
         return "An error occurred during SSL communication";

Modified: serf/trunk/src/incoming.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/src/incoming.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/src/incoming.c (original)
+++ serf/trunk/src/incoming.c Thu Jun  5 01:19:28 2025
@@ -716,14 +716,14 @@ apr_status_t serf__incoming_update_polls
 
     if (!client->skt) {
         int cid;
-        /* We are in the proces of being cleaned up. As we are not
+        /* We are in the process of being cleaned up. As we are not
            in the event loop and already notified the close callback
            we can now clear our pool and remove us from the context */
 
         if (client->config)
             serf__config_store_remove_client(ctx->config_store, client);
 
-        /* And from the incommings list */
+        /* And from the incomings list */
         for (cid = 0; cid < ctx->incomings->nelts; cid++) {
             if (GET_INCOMING(ctx, cid) == client) {
                 GET_INCOMING(ctx, cid) =

Modified: serf/trunk/src/outgoing.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/src/outgoing.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/src/outgoing.c (original)
+++ serf/trunk/src/outgoing.c Thu Jun  5 01:19:28 2025
@@ -93,7 +93,7 @@ request_pending(serf_request_t **next_re
 
 /* Check if there is data waiting to be sent over the socket. This can happen
    in two situations:
-   - The connection queue has atleast one request with unwritten data.
+   - The connection queue has at least one request with unwritten data.
    - All requests are written and the ssl layer wrote some data while reading
      the response. This can happen when the server triggers a renegotiation,
      e.g. after the first and only request on that connection was received.

Modified: serf/trunk/src/pump.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/src/pump.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/src/pump.c (original)
+++ serf/trunk/src/pump.c Thu Jun  5 01:19:28 2025
@@ -91,7 +91,7 @@ void serf_pump__done(serf_pump_t *pump)
     pump->pool = NULL;
 }
 
-/* Safely check if there is still data pending on the connection, carefull
+/* Safely check if there is still data pending on the connection, careful
    to not accidentally make it invalid. */
 bool serf_pump__data_pending(serf_pump_t *pump)
 {

Modified: serf/trunk/src/ssltunnel.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/src/ssltunnel.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/src/ssltunnel.c (original)
+++ serf/trunk/src/ssltunnel.c Thu Jun  5 01:19:28 2025
@@ -27,7 +27,7 @@
 #include "serf_private.h"
 
 
-/* Structure passed around as baton for the CONNECT request and respone. */
+/* Structure passed around as baton for the CONNECT request and response. */
 typedef struct req_ctx_t {
     apr_pool_t *pool;
     const char *uri;
@@ -139,7 +139,7 @@ static apr_status_t handle_response(serf
         val = serf_bucket_headers_get(hdrs, "Connection");
         if (val && strcasecmp("close", val) == 0) {
             serf__log(LOGLVL_DEBUG, LOGCOMP_CONN, __FILE__, conn->config,
-                      "Ignore Connection: close header on this reponse, don't "
+                      "Ignore Connection: close header on this response, don't 
"
                       "close the connection now that the tunnel is set up.\n");
             serf__bucket_headers_remove(hdrs, "Connection");
         }

Modified: serf/trunk/test/MockHTTPinC/MockHTTP.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/test/MockHTTPinC/MockHTTP.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/test/MockHTTPinC/MockHTTP.c (original)
+++ serf/trunk/test/MockHTTPinC/MockHTTP.c Thu Jun  5 01:19:28 2025
@@ -1100,7 +1100,7 @@ resp_set_repeat_pattern(const mhResponse
     apr_pool_t *tmppool;
     struct iovec *vecs;
 
-    /* TODO: the whole reponse body should be converted to buckets so that
+    /* TODO: the whole response body should be converted to buckets so that
        we can generate the body on the fly. */
     apr_pool_create(&tmppool, resp->pool);
     vecs = apr_pcalloc(tmppool, sizeof(struct iovec) * n);

Modified: serf/trunk/test/MockHTTPinC/MockHTTP.h
URL: 
http://svn.apache.org/viewvc/serf/trunk/test/MockHTTPinC/MockHTTP.h?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/test/MockHTTPinC/MockHTTP.h (original)
+++ serf/trunk/test/MockHTTPinC/MockHTTP.h Thu Jun  5 01:19:28 2025
@@ -590,7 +590,7 @@ apr_port_t mhServerByIDPortNr(const Mock
  * Semi-public API                                                            *
  * ---------------                                                            *
  * These are the functions that are used by the public API macro's.           *
- * While they're tecnically part of the API (they have to be because we use   *
+ * While they're technically part of the API (they have to be because we use  *
  * macro's), we've made no effort to make them easy to use.                   *
  
******************************************************************************/
 

Modified: serf/trunk/test/MockHTTPinC/MockHTTP_server.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/test/MockHTTPinC/MockHTTP_server.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/test/MockHTTPinC/MockHTTP_server.c (original)
+++ serf/trunk/test/MockHTTPinC/MockHTTP_server.c Thu Jun  5 01:19:28 2025
@@ -225,7 +225,7 @@ static apr_status_t setupTCPServer(mhSer
         STATUSERR(apr_socket_opt_set(ctx->skt, APR_SO_NONBLOCK, 1));
         STATUSERR(apr_socket_timeout_set(ctx->skt, 0));
         /* We used to call apr_socket_opt_set(ctx->skt, APR_SO_REUSEADDR, 1),
-           but that is severly broken when we run multiple tests in parallel,
+           but that is severely broken when we run multiple tests in parallel,
            as that may just listen on a port where another process is
            listening too.
 
@@ -249,7 +249,7 @@ static apr_status_t setupTCPServer(mhSer
         break;
     };
 
-    /* Create a new pollset, avoid broken WSAPoll implemenation on Windows. */
+    /* Create a new pollset, avoid broken WSAPoll implementation on Windows. */
 #ifdef BROKEN_WSAPOLL
     STATUSERR(apr_pollset_create_ex(&ctx->pollset, 32, pool, 0,
                                     APR_POLLSET_SELECT));
@@ -1030,7 +1030,7 @@ static char *respToString(apr_pool_t *po
                                (const char *)vec.iov_base);
         }
     } else {
-        bool emptyChunk = NO; /* empty response should atleast have 0-chunk */
+        bool emptyChunk = NO; /* empty response should at least have 0-chunk */
         for (i = 0 ; i < resp->chunks->nelts; i++) {
             struct iovec vec;
 
@@ -1144,7 +1144,7 @@ void mhPushRequest(MockHTTP *mh, mhServC
  *         YES + *RESP + *ACTION if the request was matched successfully.
  */
 
-/* TOOD:
+/* TODO:
    This function is the main bottleneck for performance. Possible fixes:
    - if a test is setup to continuously add new request matchers while sending
      requests, evaluation the matchers from last to first drastically
@@ -2559,7 +2559,7 @@ static apr_status_t status_from_ssl(sslC
 
 /**
  * Action: renegotiates a SSL session on client socket CCTX.
- * Returns APR_SUCCESS if the renegotiation handshake was successfull
+ * Returns APR_SUCCESS if the renegotiation handshake was successful
  *         error if not.
  */
 static apr_status_t renegotiateSSLSession(_mhClientCtx_t *cctx)

Modified: serf/trunk/test/test_context.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/test/test_context.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/test/test_context.c (original)
+++ serf/trunk/test/test_context.c Thu Jun  5 01:19:28 2025
@@ -690,7 +690,7 @@ static void test_connection_userinfo_in_
 }
 
 /*****************************************************************************
- * Issue #91: test that serf correctly handle an incoming 4xx reponse while
+ * Issue #91: test that serf correctly handle an incoming 4xx response while
  * the outgoing request wasn't written completely yet.
  *****************************************************************************/
 

Modified: serf/trunk/test/test_internal.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/test/test_internal.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/test/test_internal.c (original)
+++ serf/trunk/test/test_internal.c Thu Jun  5 01:19:28 2025
@@ -329,7 +329,7 @@ static void test_header_buckets_remove(C
     /* empty bucket, delete header */
     serf__bucket_headers_remove(hdrs, "Content-Length");
 
-    /* bucket with one header, delete a non-existant header */
+    /* bucket with one header, delete a non-existent header */
     serf_bucket_headers_set(hdrs, "Content-Type", "text/plain");
     serf__bucket_headers_remove(hdrs, "Content-Length");
     cur = "Content-Type: text/plain" CRLF CRLF;

Modified: serf/trunk/test/test_ssl.c
URL: 
http://svn.apache.org/viewvc/serf/trunk/test/test_ssl.c?rev=1926128&r1=1926127&r2=1926128&view=diff
==============================================================================
--- serf/trunk/test/test_ssl.c (original)
+++ serf/trunk/test/test_ssl.c Thu Jun  5 01:19:28 2025
@@ -2708,7 +2708,7 @@ static void test_ssl_ocsp_verify_respons
 {
 #ifndef OPENSSL_NO_OCSP
     apr_status_t status = verify_ocsp_response(tc, 1, 0, 0, 0);
-    /* OCSP responses MUST be signed, we can't even cteate one
+    /* OCSP responses MUST be signed, we can't even create one
        without a signature. This error doesn't come from response
        validation but because OCSP_response_create() fails. */
     CuAssertIntEquals(tc, APR_EGENERAL, status);


Reply via email to