CVS: cvs.openbsd.org: src
Rafael Sadowski <[email protected]> Sat, 18 Jul 2026 22:15:56 -0600 (MDT)
| Newsgroups | gmane.os.openbsd.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/07/18 22:15:56 Modified files: usr.sbin/httpd : config.c Log message: httpd: do NOT send location fcgiparams twice Only emit the params when the current receiver is the server child. When sending a location-config from the parent, the FCGI params IMSG was emitted once per receiver iteration and always targeted the server child. With both the server and the logger process needing the server config, the server child received IMSG_CFG_FCGI twice per location and appended the same params on top of the existing list. The FastCGI backends then saw every param duplicated. Input Fabien Romano, OK kirill@