diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-07-09 09:50:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:56 -0500 |
commit | eb75ecbccf58c641c29d3622483d9c645cea6f76 (patch) | |
tree | 104c0519df3a08e50752861703be5fbb94e054ef /source4/ntvfs | |
parent | 48e6c119562a4196b24bf85335ff6701167f68b8 (diff) | |
download | samba-eb75ecbccf58c641c29d3622483d9c645cea6f76.tar.gz samba-eb75ecbccf58c641c29d3622483d9c645cea6f76.tar.xz samba-eb75ecbccf58c641c29d3622483d9c645cea6f76.zip |
r16889: implement SMB2 Ioctl in the frontend
metze
(This used to be commit 90b0ae53e40a220249b55035411e6b60ee04de7c)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/posix/pvfs_ioctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/pvfs_ioctl.c b/source4/ntvfs/posix/pvfs_ioctl.c index 3744530a7a..513f03c8ec 100644 --- a/source4/ntvfs/posix/pvfs_ioctl.c +++ b/source4/ntvfs/posix/pvfs_ioctl.c @@ -71,6 +71,9 @@ NTSTATUS pvfs_ioctl(struct ntvfs_module_context *ntvfs, case RAW_IOCTL_NTIOCTL: return pvfs_ntioctl(ntvfs, req, io); + + case RAW_IOCTL_SMB2: + return NT_STATUS_FS_DRIVER_REQUIRED; } return NT_STATUS_INVALID_LEVEL; |