Re: another slowcgi cleanup

2021-04-16 Thread Todd C . Miller
On Fri, 16 Apr 2021 17:34:38 +0200, Claudio Jeker wrote: > Every code using SLIST_REMOVE() should just switch to proper LISTs. > I realized slowcgi was using SLIST where it should use LIST but that was > only the start of the rabbit hole. There is also no need to double wrap > the request. So this

another slowcgi cleanup

2021-04-16 Thread Claudio Jeker
Every code using SLIST_REMOVE() should just switch to proper LISTs. I realized slowcgi was using SLIST where it should use LIST but that was only the start of the rabbit hole. There is also no need to double wrap the request. So this diff make this all nice and shiny. -- :wq Claudio Index: slowc