diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-18 12:58:25 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-07-20 09:17:13 +1000 |
commit | 128ae06a619b2c50cc9379053abb18277e814747 (patch) | |
tree | f3c7c0639a4adcbcff13cbfb1322cee0b08cba1a /librpc/idl | |
parent | 8d72e612ac2845cd873c4fd614456fe8749db130 (diff) | |
download | samba-128ae06a619b2c50cc9379053abb18277e814747.tar.gz samba-128ae06a619b2c50cc9379053abb18277e814747.tar.xz samba-128ae06a619b2c50cc9379053abb18277e814747.zip |
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 <tridge@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/auth.idl | 4 |
1 files changed, 2 insertions, 2 deletions
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; |