diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-05-20 16:48:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:13 -0500 |
commit | 3cb64219e2cd492d25931f5442cbd484d6930950 (patch) | |
tree | 6dafd1f62deaab05aa4f2db5b7664e8864ff6024 /source4/smb_server/smb | |
parent | 35d6a53ff7b7b906d9a42bad5b7647a2abc6a3f6 (diff) | |
download | samba-3cb64219e2cd492d25931f5442cbd484d6930950.tar.gz samba-3cb64219e2cd492d25931f5442cbd484d6930950.tar.bz2 samba-3cb64219e2cd492d25931f5442cbd484d6930950.zip |
r15751: thanks to talloc_get_type() I noticed that I used smbsrv_request in the smb2srv code
metze
(This used to be commit 6c304a1a5f5dc6b2d3774682303874444a59b07d)
Diffstat (limited to 'source4/smb_server/smb')
-rw-r--r-- | source4/smb_server/smb/request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smb_server/smb/request.c b/source4/smb_server/smb/request.c index 2896a44d29..a08ae46852 100644 --- a/source4/smb_server/smb/request.c +++ b/source4/smb_server/smb/request.c @@ -671,7 +671,7 @@ NTSTATUS smbsrv_handle_create_new(void *private_data, struct ntvfs_request *ntvf 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); |