summaryrefslogtreecommitdiff
path: root/source3/auth/token_util.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-08-27 10:04:05 +1000
committerAndrew Bartlett <abartlet@samba.org>2010-09-11 18:46:07 +1000
commitb29b6c13a373c39190db0e2bd0440f7f2619b33c (patch)
treee8c56de227f05308eecd4d53b7ea1b5ac3560bb1 /source3/auth/token_util.c
parentf85b822bd4feaab179ffbf00496fcb7d1905fc8c (diff)
downloadsamba-b29b6c13a373c39190db0e2bd0440f7f2619b33c.tar.gz
samba-b29b6c13a373c39190db0e2bd0440f7f2619b33c.tar.bz2
samba-b29b6c13a373c39190db0e2bd0440f7f2619b33c.zip
s3-privs Inline dump_se_priv into callers now that it's just a uint64_t
The previous 128 bit structure needed this helper function. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/auth/token_util.c')
-rw-r--r--source3/auth/token_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c
index 46637b348b..e8334c6306 100644
--- a/source3/auth/token_util.c
+++ b/source3/auth/token_util.c
@@ -671,7 +671,7 @@ void debug_nt_user_token(int dbg_class, int dbg_lev, struct security_token *toke
("SID[%3lu]: %s\n", (unsigned long)i,
sid_string_dbg(&token->sids[i])));
- dump_se_priv( dbg_class, dbg_lev, &token->privilege_mask );
+ DEBUGADDC(dbg_class, dbg_lev,("Privilege mask: 0x%llx\n", (unsigned long long)token->privilege_mask));
}
/****************************************************************************