svn commit: samba r14061 - branches/SAMBA_3_0/source/rpc_parse trunk/source/rpc_parse

gd at samba.org gd at samba.org
Thu Mar 9 10:57:40 GMT 2006


Author: gd
Date: 2006-03-09 10:57:39 +0000 (Thu, 09 Mar 2006)
New Revision: 14061

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14061

Log:
Some debugging for the new LOGON/ACB-flags.

Guenther

Modified:
   branches/SAMBA_3_0/source/rpc_parse/parse_net.c
   trunk/source/rpc_parse/parse_net.c


Changeset:
Modified: branches/SAMBA_3_0/source/rpc_parse/parse_net.c
===================================================================
--- branches/SAMBA_3_0/source/rpc_parse/parse_net.c	2006-03-09 09:08:11 UTC (rev 14060)
+++ branches/SAMBA_3_0/source/rpc_parse/parse_net.c	2006-03-09 10:57:39 UTC (rev 14061)
@@ -1544,6 +1544,9 @@
 	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 @@
 	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"));
+	}
 
 
 }

Modified: trunk/source/rpc_parse/parse_net.c
===================================================================
--- trunk/source/rpc_parse/parse_net.c	2006-03-09 09:08:11 UTC (rev 14060)
+++ trunk/source/rpc_parse/parse_net.c	2006-03-09 10:57:39 UTC (rev 14061)
@@ -1544,6 +1544,9 @@
 	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 @@
 	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"));
+	}
 
 
 }



More information about the samba-cvs mailing list