@@ -1315,7 +1315,7 @@ FcgiClient::FcgiClient(struct pool &_pool,
13151315}
13161316
13171317void
1318- fcgi_client_request (struct pool * pool,
1318+ fcgi_client_request (struct pool & pool,
13191319 StopwatchPtr stopwatch,
13201320 BufferedSocket &socket, Lease &lease,
13211321 HttpMethod method, const char *uri,
@@ -1407,20 +1407,20 @@ fcgi_client_request(struct pool *pool,
14071407
14081408 if (body)
14091409 /* format the request body */
1410- request = NewConcatIstream (* pool,
1411- istream_gb_new (* pool, std::move (buffer)),
1412- istream_fcgi_new (* pool, std::move (body),
1410+ request = NewConcatIstream (pool,
1411+ istream_gb_new (pool, std::move (buffer)),
1412+ istream_fcgi_new (pool, std::move (body),
14131413 header.request_id ));
14141414 else {
14151415 /* no request body - append an empty STDIN packet */
14161416 header.type = FcgiRecordType::STDIN;
14171417 header.content_length = 0 ;
14181418 buffer.WriteT (header);
14191419
1420- request = istream_gb_new (* pool, std::move (buffer));
1420+ request = istream_gb_new (pool, std::move (buffer));
14211421 }
14221422
1423- auto client = NewFromPool<FcgiClient>(* pool, * pool,
1423+ auto client = NewFromPool<FcgiClient>(pool, pool,
14241424 std::move (stopwatch),
14251425 socket, lease,
14261426 std::move (stderr_fd),
0 commit comments