[master] 117161c85 acceptor_uds: Rename for consistency
Nils Goroll
nils.goroll at uplex.de
Mon Nov 18 13:45:07 UTC 2024
commit 117161c851df7661b18b262ef502dbabe7065115
Author: Nils Goroll <nils.goroll at uplex.de>
Date: Sat Nov 16 14:53:40 2024 +0100
acceptor_uds: Rename for consistency
the make_session function of uds still had a generic name.
diff --git a/bin/varnishd/acceptor/cache_acceptor_uds.c b/bin/varnishd/acceptor/cache_acceptor_uds.c
index 513d5161e..b71cd1cc4 100644
--- a/bin/varnishd/acceptor/cache_acceptor_uds.c
+++ b/bin/varnishd/acceptor/cache_acceptor_uds.c
@@ -311,7 +311,7 @@ vca_mk_uds(struct wrk_accept *wa, struct sess *sp)
}
static void v_matchproto_(task_func_t)
-vca_make_session(struct worker *wrk, void *arg)
+vca_uds_make_session(struct worker *wrk, void *arg)
{
struct wrk_accept *wa;
struct sess *sp;
@@ -452,7 +452,7 @@ vca_uds_accept_task(struct worker *wrk, void *arg)
wa.acceptsock = i;
if (!Pool_Task_Arg(wrk, TASK_QUEUE_REQ,
- vca_make_session, &wa, sizeof wa)) {
+ vca_uds_make_session, &wa, sizeof wa)) {
/*
* We couldn't get another thread, so we will handle
* the request in this worker thread, but first we
More information about the varnish-commit
mailing list