From 3cb64219e2cd492d25931f5442cbd484d6930950 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 20 May 2006 16:48:29 +0000 Subject: r15751: thanks to talloc_get_type() I noticed that I used smbsrv_request in the smb2srv code metze (This used to be commit 6c304a1a5f5dc6b2d3774682303874444a59b07d) --- source4/smb_server/smb2/tcon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4/smb_server/smb2') diff --git a/source4/smb_server/smb2/tcon.c b/source4/smb_server/smb2/tcon.c index 2c135e0add..bfb3904d47 100644 --- a/source4/smb_server/smb2/tcon.c +++ b/source4/smb_server/smb2/tcon.c @@ -59,7 +59,7 @@ struct ntvfs_handle *smb2srv_pull_handle(struct smb2srv_request *req, const uint tcon = smbsrv_smb2_tcon_find(req->session, tid, req->request_time); } - handle = smbsrv_smb_handle_find(tcon, hid, req->request_time); + handle = smbsrv_smb2_handle_find(tcon, hid, req->request_time); if (!handle) { return NULL; } @@ -83,12 +83,12 @@ void smb2srv_push_handle(uint8_t *base, uint_t offset, struct ntvfs_handle *ntvf static NTSTATUS smb2srv_handle_create_new(void *private_data, struct ntvfs_request *ntvfs, struct ntvfs_handle **_h) { - struct smbsrv_request *req = talloc_get_type(ntvfs->frontend_data.private_data, - struct smbsrv_request); + struct smb2srv_request *req = talloc_get_type(ntvfs->frontend_data.private_data, + struct smb2srv_request); struct smbsrv_handle *handle; struct ntvfs_handle *h; - handle = smbsrv_handle_new(req); + handle = smbsrv_handle_new(req->session, req->tcon, req, req->request_time); if (!handle) return NT_STATUS_INSUFFICIENT_RESOURCES; h = talloc_zero(handle, struct ntvfs_handle); -- cgit