summaryrefslogtreecommitdiffstats
path: root/source/include/msdfs.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-08-27 08:19:43 +0000
committerAndrew Tridgell <tridge@samba.org>2001-08-27 08:19:43 +0000
commit83d9896c1ea8be796192b51a4678c2a3b87f7518 (patch)
tree3eca52e51950890d1a5b6e7c8b0ddfdee78a239a /source/include/msdfs.h
parent9e0c9a99f6ca01cd6a0ee3084f85e1c36b11d7c3 (diff)
downloadsamba-83d9896c1ea8be796192b51a4678c2a3b87f7518.tar.gz
samba-83d9896c1ea8be796192b51a4678c2a3b87f7518.tar.xz
samba-83d9896c1ea8be796192b51a4678c2a3b87f7518.zip
converted smbd to use NTSTATUS by default
major changes include: - added NSTATUS type - added automatic mapping between dos and nt error codes - changed all ERROR() calls to ERROR_DOS() and many to ERROR_NT() these calls auto-translate to the client error code system - got rid of the cached error code and the writebmpx code We eventually will need to also: - get rid of BOOL, so we don't lose error info - replace all ERROR_DOS() calls with ERROR_NT() calls but that is too much for one night
Diffstat (limited to 'source/include/msdfs.h')
-rw-r--r--source/include/msdfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/msdfs.h b/source/include/msdfs.h
index 2c0f9a19bac..0748577b0b9 100644
--- a/source/include/msdfs.h
+++ b/source/include/msdfs.h
@@ -64,13 +64,13 @@ struct dfs_path
#define RESOLVE_DFSPATH(name, conn, inbuf, outbuf) \
{ if(((SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES)) && \
dfs_redirect(name,conn)) \
- return(dfs_path_error(inbuf,outbuf)); }
+ return ERROR_NT(NT_STATUS_PATH_NOT_COVERED); }
#define RESOLVE_FINDFIRST_DFSPATH(name, conn, inbuf, outbuf) \
{ if((SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES) || \
get_remote_arch()==RA_WIN95) \
if(dfs_findfirst_redirect(directory,conn)) \
- return(dfs_path_error(inbuf,outbuf)); }
+ return ERROR_NT(NT_STATUS_PATH_NOT_COVERED); }
#define init_dfsroot(conn, inbuf, outbuf) \
{ if(lp_msdfs_root(SNUM(conn)) && lp_host_msdfs()) \