diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-15 17:28:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:57:26 -0500 |
commit | 2e7df84576d26bc37eb87b7e3c79fcb3fb358d68 (patch) | |
tree | 2b30c038028b0a1530d0236fa196efaa3d63b0f5 /source4/smb_server/smb_server.h | |
parent | 84aea6eca58b20f32fad0de0f43d9a5c7de247c9 (diff) | |
download | samba-2e7df84576d26bc37eb87b7e3c79fcb3fb358d68.tar.gz |
r14456: don't access the smbsrv_tcon inside the ntvfs modules
metze
(This used to be commit 5709c1c4e1a561dd9af98cfefbbbdac9b18765b7)
Diffstat (limited to 'source4/smb_server/smb_server.h')
-rw-r--r-- | source4/smb_server/smb_server.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index ab24381026..2b06eb9d5b 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -103,16 +103,11 @@ struct smbsrv_tcon { */ uint32_t tid; /* an index passed over the wire (the TID) */ - int service; + /* the share name */ + const char *share_name; /* the NTVFS context - see source/ntvfs/ for details */ - struct ntvfs_context *ntvfs_ctx; - - /* the reported filesystem type */ - char *fs_type; - - /* the reported device type */ - char *dev_type; + struct ntvfs_context *ntvfs; /* some stuff to support share level security */ struct { |