diff options
author | Günther Deschner <gd@samba.org> | 2006-03-09 10:57:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:11:09 -0500 |
commit | fc5a7fe064e2c5f4747f28ee0a0ff9a7f0c6b071 (patch) | |
tree | 35c7b6295acd8be6a36f8842d3ab0b5ebc72f0f7 /source3 | |
parent | 1b0211ca131e2c568ee445e96c38e5ea67e2ddb6 (diff) | |
download | samba-fc5a7fe064e2c5f4747f28ee0a0ff9a7f0c6b071.tar.gz samba-fc5a7fe064e2c5f4747f28ee0a0ff9a7f0c6b071.tar.bz2 samba-fc5a7fe064e2c5f4747f28ee0a0ff9a7f0c6b071.zip |
r14061: Some debugging for the new LOGON/ACB-flags.
Guenther
(This used to be commit 7616317f9f45dfbc453a7687e8b8b6ff57ddb0a3)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_parse/parse_net.c | 9 |
1 files changed, 9 insertions, 0 deletions
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")); + } } |