diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-08-27 10:04:05 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-11 18:46:07 +1000 |
commit | b29b6c13a373c39190db0e2bd0440f7f2619b33c (patch) | |
tree | e8c56de227f05308eecd4d53b7ea1b5ac3560bb1 /source3/auth | |
parent | f85b822bd4feaab179ffbf00496fcb7d1905fc8c (diff) | |
download | samba-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')
-rw-r--r-- | source3/auth/token_util.c | 2 |
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)); } /**************************************************************************** |