From cdd140fe2774c1e65cdf43091a746ad2ef0fd3e7 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Fri, 3 Aug 2007 13:53:25 +0000 Subject: r24158: SE_GROUP_RESOURCE in the other_sids list apparently means a domain local group. Fix a typo in the PAC debugging routine (This used to be commit b0b66b2e7af133b199868b946fad70016e1cefbd) --- source3/include/rpc_netlogon.h | 2 +- source3/libads/authdata.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/include/rpc_netlogon.h b/source3/include/rpc_netlogon.h index ca106e93ff..b2c542a906 100644 --- a/source3/include/rpc_netlogon.h +++ b/source3/include/rpc_netlogon.h @@ -98,7 +98,7 @@ #define SE_GROUP_OWNER 0x00000008 #define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010 #define SE_GROUP_LOGON_ID 0xC0000000 -#define SE_GROUP_RESOURCE 0x20000000 +#define SE_GROUP_RESOURCE 0x20000000 /* Domain Local Group */ /* Flags for controlling the behaviour of a particular logon */ diff --git a/source3/libads/authdata.c b/source3/libads/authdata.c index b19bec43c5..a76a7ca485 100644 --- a/source3/libads/authdata.c +++ b/source3/libads/authdata.c @@ -766,7 +766,7 @@ void dump_pac_logon_info(int lvl, PAC_LOGON_INFO *logon_info) SAFE_FREE(attr_string); } - DEBUGADD(lvl,("\tGroup Membership (Ressource Groups (SID History ?)):\n")); + DEBUGADD(lvl,("\tGroup Membership (Resource Groups (SID History ?)):\n")); for (i = 0; i < logon_info->info3.res_group_count; i++) { attr_string = pac_group_attr_string(logon_info->res_groups.group_membership[i].attrs); DEBUGADD(lvl,("\t\t%d: sid: %s-%d\n\t\t attr: 0x%x == %s\n", -- cgit