From ff55bda1481ed369e39b9d7d70f04e941b0b341e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 14 May 2004 00:23:07 +0000 Subject: r712: fixed a bug in the NetShareGetInfo idl, and added another info level (This used to be commit 93977055939c5282dbf218f3a6739fa17ebfc641) --- source4/librpc/idl/srvsvc.idl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl index 9881f8f499..04a063d68d 100644 --- a/source4/librpc/idl/srvsvc.idl +++ b/source4/librpc/idl/srvsvc.idl @@ -439,6 +439,10 @@ [subcontext(4)] security_descriptor *sd; } srvsvc_NetShareInfo502; + typedef struct { + uint32 dfs_flags; + } srvsvc_NetShareInfo1005; + typedef struct { uint32 count; [size_is(count)] srvsvc_NetShareInfo502 *array; @@ -450,6 +454,7 @@ [case(2)] srvsvc_NetShareInfo2 *info2; [case(501)] srvsvc_NetShareInfo501 *info501; [case(502)] srvsvc_NetShareInfo502 *info502; + [case(1005)] srvsvc_NetShareInfo1005 *info1005; [default] ; } srvsvc_NetShareInfo; @@ -486,7 +491,7 @@ /* Function: 0x10 */ WERROR srvsvc_NetShareGetInfo( [in] unistr *server_unc, - [in] unistr *share_name, + [in] unistr share_name, [in] uint32 level, [out,switch_is(level)] srvsvc_NetShareInfo info ); -- cgit