lib: fix formatting nits (part 1)

From `lib/a*` to `lib/cs*`.

Closes #19764
This commit is contained in:
Viktor Szakats 2025-11-29 22:37:26 +01:00
parent 2253bc330f
commit 47a1ab2ebe
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
28 changed files with 376 additions and 431 deletions

View file

@ -36,9 +36,9 @@
typedef enum {
HAPROXY_INIT, /* init/default/no tunnel state */
HAPROXY_SEND, /* data_out being sent */
HAPROXY_DONE /* all work done */
HAPROXY_INIT, /* init/default/no tunnel state */
HAPROXY_SEND, /* data_out being sent */
HAPROXY_DONE /* all work done */
} haproxy_state;
struct cf_haproxy_ctx {
@ -61,7 +61,7 @@ static void cf_haproxy_ctx_free(struct cf_haproxy_ctx *ctx)
}
}
static CURLcode cf_haproxy_date_out_set(struct Curl_cfilter*cf,
static CURLcode cf_haproxy_date_out_set(struct Curl_cfilter *cf,
struct Curl_easy *data)
{
struct cf_haproxy_ctx *ctx = cf->ctx;