From 128ae06a619b2c50cc9379053abb18277e814747 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 18 Jul 2011 12:58:25 +1000 Subject: s3-auth use auth_user_info not netr_SamInfo3 in auth3_session_info This makes auth3_session_info identical to auth_session_info The logic to convert the info3 to a struct auth_user_info is essentially moved up the stack from the named pipe proxy in source3/rpc_server to create_local_token(). Andrew Bartlett Signed-off-by: Andrew Tridgell --- librpc/idl/auth.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'librpc/idl') diff --git a/librpc/idl/auth.idl b/librpc/idl/auth.idl index 962383d175..a14b241254 100644 --- a/librpc/idl/auth.idl +++ b/librpc/idl/auth.idl @@ -9,7 +9,7 @@ */ -import "misc.idl", "security.idl", "lsa.idl", "krb5pac.idl", "netlogon.idl"; +import "misc.idl", "security.idl", "lsa.idl", "krb5pac.idl"; [ pyhelper("librpc/ndr/py_auth.c"), helper("../librpc/ndr/ndr_auth.h"), @@ -103,7 +103,7 @@ interface auth typedef [public] struct { security_token *security_token; security_unix_token *unix_token; - netr_SamInfo3 *info3; + auth_user_info *info; auth_user_info_unix *unix_info; [value(NULL), ignore] auth_user_info_torture *torture; -- cgit