summaryrefslogtreecommitdiff
path: root/source3/include/rpc_dfs.h
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-09-12 01:11:43 +0000
committerTim Potter <tpot@samba.org>2001-09-12 01:11:43 +0000
commitdb9ba1f875510d2c3fa7faa2104a032096837d05 (patch)
treec780ecfcada3f47c3894019661706b8787478a01 /source3/include/rpc_dfs.h
parent91bd0d7e9b0aec7bfd92eca8d53623b3da0b326b (diff)
downloadsamba-db9ba1f875510d2c3fa7faa2104a032096837d05.tar.gz
samba-db9ba1f875510d2c3fa7faa2104a032096837d05.tar.bz2
samba-db9ba1f875510d2c3fa7faa2104a032096837d05.zip
Moved and renamed DFS error constants from include/rpc_dfs.h to doserr.h to
fit in with new error reporting subsystem. (This used to be commit dbfd50d447e4166a4233034885666d985ca6beb8)
Diffstat (limited to 'source3/include/rpc_dfs.h')
-rw-r--r--source3/include/rpc_dfs.h21
1 files changed, 5 insertions, 16 deletions
diff --git a/source3/include/rpc_dfs.h b/source3/include/rpc_dfs.h
index 85be2cdabd..5222d6b356 100644
--- a/source3/include/rpc_dfs.h
+++ b/source3/include/rpc_dfs.h
@@ -35,17 +35,6 @@
#define DFSFLAG_ADD_VOLUME 0x00000001
#define DFSFLAG_RESTORE_VOLUME 0x00000002
-/* API errors from lmerr.h */
-#ifndef NERR_BASE
-#define NERR_BASE (2100)
-#endif
-
-#define NERR_DfsNoSuchVolume (NERR_BASE+562)
-#define NERR_DfsNoSuchShare (NERR_BASE+565)
-#define NERR_DfsNoSuchServer (NERR_BASE+573)
-#define NERR_DfsInternalError (NERR_BASE+590)
-#define NERR_DfsCantCreateJunctionPoint (NERR_BASE+569)
-
typedef struct dfs_q_dfs_exist
{
uint32 dummy;
@@ -55,7 +44,7 @@ DFS_Q_DFS_EXIST;
/* status == 1 if dfs exists. */
typedef struct dfs_r_dfs_exist
{
- uint32 status;
+ uint32 status; /* Not a WERROR or NTSTATUS code */
}
DFS_R_DFS_EXIST;
@@ -75,7 +64,7 @@ DFS_Q_DFS_ADD;
typedef struct dfs_r_dfs_add
{
- NTSTATUS status;
+ WERROR status;
}
DFS_R_DFS_ADD;
@@ -92,7 +81,7 @@ DFS_Q_DFS_REMOVE;
typedef struct dfs_r_dfs_remove
{
- NTSTATUS status;
+ WERROR status;
}
DFS_R_DFS_REMOVE;
@@ -173,7 +162,7 @@ typedef struct dfs_r_dfs_get_info
uint32 level;
uint32 ptr_ctr;
DFS_INFO_CTR ctr;
- NTSTATUS status;
+ WERROR status;
}
DFS_R_DFS_GET_INFO;
@@ -202,7 +191,7 @@ typedef struct dfs_r_dfs_enum
uint32 ptr_num_entries2;
uint32 num_entries2;
ENUM_HND reshnd;
- NTSTATUS status;
+ WERROR status;
}
DFS_R_DFS_ENUM;