From bf1dba03b285f3044f096ab597df7859d68ad28e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 15 Jul 2011 15:10:03 +1000 Subject: auth: Put 'guest' and 'system' booleans into auth_user_info_unix This will allow a transformation of auth3_session_info into auth_session_info by substitution. Andrew Bartlett Signed-off-by: Andrew Tridgell --- librpc/idl/auth.idl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'librpc') diff --git a/librpc/idl/auth.idl b/librpc/idl/auth.idl index 904becac61..2536777f06 100644 --- a/librpc/idl/auth.idl +++ b/librpc/idl/auth.idl @@ -62,6 +62,12 @@ interface auth } auth_user_info_torture; typedef [public] struct { + /* These match exactly the values from the + * auth_serversupplied_info, but should be changed to + * checks involving just the SIDs */ + boolean8 guest; + boolean8 system; + utf8string unix_name; /* -- cgit