From ef2de912f2c0b095ea19986b3dce6b1b8a0ea8b5 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 27 Feb 2001 02:09:50 +0000 Subject: 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) --- source3/include/rpc_dfs.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'source3/include/rpc_dfs.h') 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; -- cgit