From fc5a7fe064e2c5f4747f28ee0a0ff9a7f0c6b071 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 9 Mar 2006 10:57:39 +0000 Subject: r14061: Some debugging for the new LOGON/ACB-flags. Guenther (This used to be commit 7616317f9f45dfbc453a7687e8b8b6ff57ddb0a3) --- source3/rpc_parse/parse_net.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source3/rpc_parse/parse_net.c') diff --git a/source3/rpc_parse/parse_net.c b/source3/rpc_parse/parse_net.c index 9e55d320be..e168f5abbd 100644 --- a/source3/rpc_parse/parse_net.c +++ b/source3/rpc_parse/parse_net.c @@ -1544,6 +1544,9 @@ void init_net_user_info3(TALLOC_CTX *ctx, NET_USER_INFO_3 *usr, if (acct_flags & ACB_NO_AUTH_DATA_REQD) { DEBUGADD(lvl,("\taccount has ACB_NO_AUTH_DATA_REQD set\n")); } + if (acct_flags & ACB_PWEXPIRED) { + DEBUGADD(lvl,("\taccount has ACB_PWEXPIRED set\n")); + } } void dump_user_flgs(uint32 user_flags) { @@ -1562,6 +1565,12 @@ void init_net_user_info3(TALLOC_CTX *ctx, NET_USER_INFO_3 *usr, if (user_flags & LOGON_CACHED_ACCOUNT) { DEBUGADD(lvl,("\taccount has LOGON_CACHED_ACCOUNT\n")); } + if (user_flags & LOGON_PROFILE_PATH_RETURNED) { + DEBUGADD(lvl,("\taccount has LOGON_PROFILE_PATH_RETURNED\n")); + } + if (user_flags & LOGON_SERVER_TRUST_ACCOUNT) { + DEBUGADD(lvl,("\taccount has LOGON_SERVER_TRUST_ACCOUNT\n")); + } } -- cgit