diff options
author | Günther Deschner <gd@samba.org> | 2007-06-27 12:35:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:53:28 -0500 |
commit | aa860b259e00c533a0e4d41da8bdd26cce0a76ef (patch) | |
tree | c94f7822cb17cd1433cb52e615b1af5fa0717b61 /source4/librpc | |
parent | ff4c92ace27626c23abca00f8e4698ea393f4adf (diff) | |
download | samba-aa860b259e00c533a0e4d41da8bdd26cce0a76ef.tar.gz samba-aa860b259e00c533a0e4d41da8bdd26cce0a76ef.tar.xz samba-aa860b259e00c533a0e4d41da8bdd26cce0a76ef.zip |
r23630: Found out what LSA_LOOKUP_NAMES level 5 means:
only query transitive forest trusts.
Guenther
(This used to be commit 71e5e1109cb924fbcd9eedd031fbf0973e8c8ff5)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/lsa.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl index a121e559068..a121e990045 100644 --- a/source4/librpc/idl/lsa.idl +++ b/source4/librpc/idl/lsa.idl @@ -343,7 +343,7 @@ import "security.idl"; * Level 2: Ask domain and trusted domains, no builtin and wkn * Level 3: Only ask domain * Level 4: W2k3ad: Only ask AD trusts - * Level 5: Don't lookup anything + * Level 5: Only ask transitive forest trusts * Level 6: Like 4 */ @@ -352,7 +352,7 @@ import "security.idl"; LSA_LOOKUP_NAMES_DOMAINS_ONLY = 2, LSA_LOOKUP_NAMES_PRIMARY_DOMAIN_ONLY = 3, LSA_LOOKUP_NAMES_UPLEVEL_TRUSTS_ONLY = 4, - LSA_LOOKUP_NAMES_NONE = 5, + LSA_LOOKUP_NAMES_FOREST_TRUSTS_ONLY = 5, LSA_LOOKUP_NAMES_UPLEVEL_TRUSTS_ONLY2 = 6 } lsa_LookupNamesLevel; |