summaryrefslogtreecommitdiff
path: root/source3/rpc_parse
diff options
context:
space:
mode:
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r--source3/rpc_parse/parse_net.c9
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"));
+ }
}