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 /libcli/security | |
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 'libcli/security')
-rw-r--r-- | libcli/security/privileges.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libcli/security/privileges.c b/libcli/security/privileges.c index d72401af3f..f4f3321198 100644 --- a/libcli/security/privileges.c +++ b/libcli/security/privileges.c @@ -176,15 +176,6 @@ bool se_priv_from_name( const char *name, uint64_t *privilege_mask ) return false; } -/*************************************************************************** - dump an uint64_t structure to the log files -****************************************************************************/ - -void dump_se_priv( int dbg_cl, int dbg_lvl, const uint64_t *privilege_mask ) -{ - DEBUGADDC( dbg_cl, dbg_lvl,("uint64_t 0x%llx\n", (unsigned long long)*privilege_mask)); -} - /**************************************************************************** check if the privilege is in the privilege list ****************************************************************************/ |