From 33e397f9fde1346d4f6488128efcd6ecba06143c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 21 Jan 2010 13:58:39 +0100 Subject: s3: Make "init_smb_request" static to process.c --- source3/smbd/process.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source3/smbd/process.c') diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 572f37dbbe..44d53b23b6 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -366,10 +366,8 @@ static NTSTATUS receive_smb_talloc(TALLOC_CTX *mem_ctx, int fd, * Initialize a struct smb_request from an inbuf */ -void init_smb_request(struct smb_request *req, - const uint8 *inbuf, - size_t unread_bytes, - bool encrypted) +static void init_smb_request(struct smb_request *req, const uint8 *inbuf, + size_t unread_bytes, bool encrypted) { struct smbd_server_connection *sconn = smbd_server_conn; size_t req_size = smb_len(inbuf) + 4; -- cgit