From 3a7bc3abb837b8c9df2c156440eb8a6f7e60c8d9 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 3 Mar 2012 00:34:27 +0100 Subject: s3: Remove unused smb_request->chain_outbuf --- source3/include/smb.h | 5 ----- source3/smbd/process.c | 1 - 2 files changed, 6 deletions(-) diff --git a/source3/include/smb.h b/source3/include/smb.h index d93f30d483..553281d21b 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 c3304c7114..676e67c2e0 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; -- cgit