summaryrefslogtreecommitdiff
path: root/source3/include/rpc_dfs.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-02-27 02:09:50 +0000
committerJeremy Allison <jra@samba.org>2001-02-27 02:09:50 +0000
commitef2de912f2c0b095ea19986b3dce6b1b8a0ea8b5 (patch)
tree2b857f5063d9c292d9c5b4fd0f23d8c11219f0c3 /source3/include/rpc_dfs.h
parentd4a28325f1aa46dccdc9c16f68521284b0983d90 (diff)
downloadsamba-ef2de912f2c0b095ea19986b3dce6b1b8a0ea8b5.tar.gz
samba-ef2de912f2c0b095ea19986b3dce6b1b8a0ea8b5.tar.bz2
samba-ef2de912f2c0b095ea19986b3dce6b1b8a0ea8b5.zip
Separated dfs pipe into implementation and interface modules.
rpc_parse/parse_dfs.c: Had to add buffer overrun checking ! HOW DID THIS GET IN HERE ! rpc_parse/parse_prs.c: Ensure prs_alloc_mem does a memset of zero before returning. Jeremy. (This used to be commit c9a6a17025f4a6850cd2b9a9ddb48bdeec8b3ffe)
Diffstat (limited to 'source3/include/rpc_dfs.h')
-rw-r--r--source3/include/rpc_dfs.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/source3/include/rpc_dfs.h b/source3/include/rpc_dfs.h
index e85a39eabb..40e73c5afb 100644
--- a/source3/include/rpc_dfs.h
+++ b/source3/include/rpc_dfs.h
@@ -46,9 +46,16 @@
#define NERR_DfsInternalError (NERR_BASE+590)
#define NERR_DfsCantCreateJunctionPoint (NERR_BASE+569)
+typedef struct dfs_q_dfs_exist
+{
+ uint32 dummy;
+}
+DFS_Q_DFS_EXIST;
+
+/* status == 1 if dfs exists. */
typedef struct dfs_r_dfs_exist
{
- uint32 dfs_exist_flag;
+ uint32 status;
}
DFS_R_DFS_EXIST;