From cba7f8b8273e661d3c43652900d93e5a8eab4e5f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 21 May 2010 11:25:01 +1000 Subject: s3:dom_sid Global replace of DOM_SID with struct dom_sid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This matches the structure that new code is being written to, and removes one more of the old-style named structures, and the need to know that is is just an alias for struct dom_sid. Andrew Bartlett Signed-off-by: Günther Deschner --- source3/smbd/nttrans.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/smbd/nttrans.c') diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 9b4d38a904..84a20ae875 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -2224,7 +2224,7 @@ static void call_nt_transact_ioctl(connection_struct *conn, * * but I have to check that --metze */ - DOM_SID sid; + struct dom_sid sid; uid_t uid; size_t sid_len = MIN(data_count-4,SID_MAX_SIZE); @@ -2364,7 +2364,7 @@ static void call_nt_transact_get_user_quota(connection_struct *conn, files_struct *fsp = NULL; uint16 level = 0; size_t sid_len; - DOM_SID sid; + struct dom_sid sid; bool start_enum = True; SMB_NTQUOTA_STRUCT qt; SMB_NTQUOTA_LIST *tmp_list; @@ -2634,7 +2634,7 @@ static void call_nt_transact_set_user_quota(connection_struct *conn, int data_len=0,param_len=0; SMB_NTQUOTA_STRUCT qt; size_t sid_len; - DOM_SID sid; + struct dom_sid sid; files_struct *fsp = NULL; ZERO_STRUCT(qt); -- cgit