summaryrefslogtreecommitdiff
path: root/source3/smbd/error.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-07-30 10:23:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:02 -0500
commit4392d47b34720d2dcd8ee47bd14a71bf1eab2c86 (patch)
tree2087732a93398dea7efe2b0de2cef090151a5524 /source3/smbd/error.c
parent09b3d2525249fd832b7d46a19921a87a13b71407 (diff)
downloadsamba-4392d47b34720d2dcd8ee47bd14a71bf1eab2c86.tar.gz
samba-4392d47b34720d2dcd8ee47bd14a71bf1eab2c86.tar.bz2
samba-4392d47b34720d2dcd8ee47bd14a71bf1eab2c86.zip
r24078: Add reply_unixerror
(This used to be commit 10ac991750e9476299d39ac6f763d1638ff8c619)
Diffstat (limited to 'source3/smbd/error.c')
-rw-r--r--source3/smbd/error.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/source3/smbd/error.c b/source3/smbd/error.c
index d00c61487a..023e1b7dcc 100644
--- a/source3/smbd/error.c
+++ b/source3/smbd/error.c
@@ -157,3 +157,33 @@ void reply_both_error(struct smb_request *req, uint8 eclass, uint32 ecode,
error_packet_set((char *)req->outbuf, eclass, ecode, status,
line, file);
}
+
+void reply_unix_error(struct smb_request *req, uint8 defclass, uint32 defcode,
+ NTSTATUS defstatus, int line, const char *file)
+{
+ int eclass=defclass;
+ int ecode=defcode;
+ NTSTATUS ntstatus = defstatus;
+ int i=0;
+
+ TALLOC_FREE(req->outbuf);
+ reply_outbuf(req, 0, 0);
+
+ if (errno != 0) {
+ DEBUG(3,("unix_error_packet: error string = %s\n",
+ strerror(errno)));
+
+ while (unix_dos_nt_errmap[i].dos_class != 0) {
+ if (unix_dos_nt_errmap[i].unix_error == errno) {
+ eclass = unix_dos_nt_errmap[i].dos_class;
+ ecode = unix_dos_nt_errmap[i].dos_code;
+ ntstatus = unix_dos_nt_errmap[i].nt_error;
+ break;
+ }
+ i++;
+ }
+ }
+
+ error_packet_set((char *)req->outbuf, eclass, ecode, ntstatus,
+ line, file);
+}