diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/proto.h | 4 | ||||
-rw-r--r-- | source3/smbd/process.c | 6 |
2 files changed, 2 insertions, 8 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 4d5ebca63f..c3f0dff469 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6784,10 +6784,6 @@ int srv_set_message(char *buf, int num_words, int num_bytes, bool zero); -void init_smb_request(struct smb_request *req, - const uint8 *inbuf, - size_t unread_bytes, - bool encrypted); void remove_deferred_open_smb_message(uint16 mid); void schedule_deferred_open_smb_message(uint16 mid); bool open_was_deferred(uint16 mid); 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; |