diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-08-10 10:28:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:27 -0500 |
commit | a5f412f305ea2bdb0ee0efd5a38385525d4671c8 (patch) | |
tree | ce6aedf900b0436ec580d512c3ec5466bc7bfeea /source3/include | |
parent | c25f22562e9e7cfdf193a01f10fe571b748a6d46 (diff) | |
download | samba-a5f412f305ea2bdb0ee0efd5a38385525d4671c8.tar.gz samba-a5f412f305ea2bdb0ee0efd5a38385525d4671c8.tar.bz2 samba-a5f412f305ea2bdb0ee0efd5a38385525d4671c8.zip |
r24311: add a reply_force_nterror() macro
metze
(This used to be commit b9ae00f4980c305f2f7334b139f9bc72fd9afbd6)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb_macros.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index 15789a938a..7c786b03c8 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -170,6 +170,7 @@ #define ERROR_BOTH(status,class,code) error_packet(inbuf,outbuf,class,code,status,__LINE__,__FILE__) #define reply_nterror(req,status) reply_nt_error(req,status,__LINE__,__FILE__) +#define reply_force_nterror(req,status) reply_force_nt_error(req,status,__LINE__,__FILE__) #define reply_doserror(req,eclass,ecode) reply_dos_error(req,eclass,ecode,__LINE__,__FILE__) #define reply_botherror(req,status,eclass,ecode) reply_both_error(req,eclass,ecode,status,__LINE__,__FILE__) #define reply_unixerror(req,defclass,deferror) reply_unix_error(req,defclass,deferror,NT_STATUS_OK,__LINE__,__FILE__) |