summaryrefslogtreecommitdiff
path: root/source3/smbd/error.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-08-16 17:42:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:52 -0500
commit077d5d2e369e4fcb3e8c8fec862da9e450398ef3 (patch)
tree3cad36d9fe78dab4fd538bbb11fce76f84d6739c /source3/smbd/error.c
parentbcc7bdcfe38673ab9a409b94d525ca5c09e0e591 (diff)
downloadsamba-077d5d2e369e4fcb3e8c8fec862da9e450398ef3.tar.gz
samba-077d5d2e369e4fcb3e8c8fec862da9e450398ef3.tar.bz2
samba-077d5d2e369e4fcb3e8c8fec862da9e450398ef3.zip
r24498: More extra code into a function, reply_openerror.
Jeremy. (This used to be commit 43ddfb8c918bd27e2efd3b54077db815da80a53a)
Diffstat (limited to 'source3/smbd/error.c')
-rw-r--r--source3/smbd/error.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/smbd/error.c b/source3/smbd/error.c
index 74029a2b05..143417dce3 100644
--- a/source3/smbd/error.c
+++ b/source3/smbd/error.c
@@ -179,3 +179,20 @@ void reply_unix_error(struct smb_request *req, uint8 defclass, uint32 defcode,
error_packet_set((char *)req->outbuf, eclass, ecode, ntstatus,
line, file);
}
+
+void reply_openerror(struct smb_request *req, NTSTATUS status)
+{
+ if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_COLLISION)) {
+ /*
+ * We hit an existing file, and if we're returning DOS
+ * error codes OBJECT_NAME_COLLISION would map to
+ * ERRDOS/183, we need to return ERRDOS/80, see bug
+ * 4852.
+ */
+ reply_botherror(req, NT_STATUS_OBJECT_NAME_COLLISION,
+ ERRDOS, ERRfilexists);
+ } else {
+ reply_nterror(req, status);
+ }
+}
+