From: Volker Lendecke Date: Fri, 2 Mar 2012 23:34:27 +0000 (+0100) Subject: s3: Remove unused smb_request->chain_outbuf X-Git-Tag: tdb-1.2.10~261 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a7bc3abb837b8c9df2c156440eb8a6f7e60c8d9;p=thirdparty%2Fsamba.git s3: Remove unused smb_request->chain_outbuf --- diff --git a/source3/include/smb.h b/source3/include/smb.h index d93f30d4835..553281d21bc 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -480,11 +480,6 @@ struct smb_request { */ struct files_struct *chain_fsp; - /* - * Here we collect the outbufs from the chain handlers - */ - uint8_t *chain_outbuf; - /* * state information for async smb handling */ diff --git a/source3/smbd/process.c b/source3/smbd/process.c index c3304c7114d..676e67c2e05 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -538,7 +538,6 @@ static bool init_smb_request(struct smb_request *req, req->sconn = sconn; req->conn = conn_find(sconn,req->tid); req->chain_fsp = NULL; - req->chain_outbuf = NULL; req->done = false; req->smb2req = NULL; req->priv_paths = NULL;