commit b4fd5cf63b73fc04038dd5507597aa5f6312570d from: Stefan Sperling via: Thomas Adam date: Mon Sep 08 16:29:32 2025 UTC fix process ID passed in gotwebd fcgi send_parsed_params() and abort_request() commit - 07226cf792be7df8fc8060ee426e20670bcb366e commit + b4fd5cf63b73fc04038dd5507597aa5f6312570d blob - 716bdebcfde56f58681dcc578af8e42c6f38c0cf blob + 469f7d76f548fb2613d0005419bd07a69d05aaa7 --- gotwebd/fcgi.c +++ gotwebd/fcgi.c @@ -114,7 +114,7 @@ send_parsed_params(struct gotwebd_fcgi_params *params) struct gotwebd *env = gotwebd_env; if (imsg_compose_event(env->iev_sockets, GOTWEBD_IMSG_FCGI_PARAMS, - GOTWEBD_PROC_SERVER, -1, -1, params, sizeof(*params)) == -1) + GOTWEBD_PROC_FCGI, -1, -1, params, sizeof(*params)) == -1) log_warn("imsg_compose_event"); } @@ -124,7 +124,7 @@ abort_request(uint32_t request_id) struct gotwebd *env = gotwebd_env; if (imsg_compose_event(env->iev_sockets, GOTWEBD_IMSG_REQ_ABORT, - GOTWEBD_PROC_SERVER, -1, -1, &request_id, sizeof(request_id)) == -1) + GOTWEBD_PROC_FCGI, -1, -1, &request_id, sizeof(request_id)) == -1) log_warn("imsg_compose_event"); }