From 509be8d902038ec2a75ece5fd28d43d73218f0b2 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 18 Nov 2005 12:20:16 +0000 Subject: r11781: rename tree to tcons to match the sessions substructure of smbsrv_connection metze (This used to be commit acd3e644e030a3544ddc6cdcd4e0ec9617732cba) --- source4/librpc/idl/irpc.idl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source4/librpc/idl') diff --git a/source4/librpc/idl/irpc.idl b/source4/librpc/idl/irpc.idl index 8c14982fbf..27eccf9a33 100644 --- a/source4/librpc/idl/irpc.idl +++ b/source4/librpc/idl/irpc.idl @@ -66,7 +66,7 @@ ******************************************************/ typedef [v1_enum] enum { SMBSRV_INFO_SESSIONS, - SMBSRV_INFO_TREES + SMBSRV_INFO_TCONS } smbsrv_info_level; typedef struct { @@ -87,16 +87,16 @@ astring share_name; astring client_ip; NTTIME connect_time; - } smbsrv_tree_info; + } smbsrv_tcon_info; typedef struct { - uint32 num_trees; - [size_is(num_trees)] smbsrv_tree_info *trees; - } smbsrv_trees; + uint32 num_tcons; + [size_is(num_tcons)] smbsrv_tcon_info *tcons; + } smbsrv_tcons; typedef union { [case(SMBSRV_INFO_SESSIONS)] smbsrv_sessions sessions; - [case(SMBSRV_INFO_TREES)] smbsrv_trees trees; + [case(SMBSRV_INFO_TCONS)] smbsrv_tcons tcons; } smbsrv_info; void smbsrv_information( -- cgit