From 94fe9afae42ee09974b8c5ab802868e703318d95 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Tue, 26 Mar 2019 15:04:28 +0100 Subject: [PATCH] s4:lib/http: remove stream and send_queue from state They're not used, so remove them. Signed-off-by: Ralph Boehme Reviewed-by: Samuel Cabrero --- source4/lib/http/http.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source4/lib/http/http.c b/source4/lib/http/http.c index a6bf66ed679..53aed246324 100644 --- a/source4/lib/http/http.c +++ b/source4/lib/http/http.c @@ -761,10 +761,8 @@ static NTSTATUS http_push_body(TALLOC_CTX *mem_ctx, struct http_send_request_state { struct tevent_context *ev; - struct tstream_context *stream; struct loadparm_context *lp_ctx; struct cli_credentials *credentials; - struct tevent_queue *send_queue; struct http_request *request; DATA_BLOB buffer; struct iovec iov; @@ -801,8 +799,6 @@ struct tevent_req *http_send_request_send(TALLOC_CTX *mem_ctx, } state->ev = ev; - state->stream = stream; - state->send_queue = send_queue; state->request = request; /* Push the request line */ -- 2.47.3