summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-03-11 19:29:18 +0100
committerStefan Metzmacher <metze@samba.org>2008-03-11 20:16:52 +0100
commit8e70dc7e9a1c88a4766b92ec61cbe7ba6f7dcd7f (patch)
treeda0ebd6f62261fb90b670c2464e40b1f87f81962 /source4/ntvfs
parent903ea3d36d8f5c63dabfc23d768450ee0b01dcdc (diff)
downloadsamba-8e70dc7e9a1c88a4766b92ec61cbe7ba6f7dcd7f.tar.gz
samba-8e70dc7e9a1c88a4766b92ec61cbe7ba6f7dcd7f.tar.bz2
samba-8e70dc7e9a1c88a4766b92ec61cbe7ba6f7dcd7f.zip
pvfs: return NT_STATUS_NOT_IMPLEMENTED on RAW_RENAME_NTTRANS
metze (This used to be commit 6dc280731d071681b635a2f091be2b153a902080)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/posix/pvfs_rename.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/pvfs_rename.c b/source4/ntvfs/posix/pvfs_rename.c
index 29b2d03005..e94de8b28e 100644
--- a/source4/ntvfs/posix/pvfs_rename.c
+++ b/source4/ntvfs/posix/pvfs_rename.c
@@ -575,6 +575,9 @@ NTSTATUS pvfs_rename(struct ntvfs_module_context *ntvfs,
case RAW_RENAME_NTRENAME:
return pvfs_rename_nt(ntvfs, req, ren);
+ case RAW_RENAME_NTTRANS:
+ return NT_STATUS_NOT_IMPLEMENTED;
+
default:
break;
}