From b29b6c13a373c39190db0e2bd0440f7f2619b33c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 27 Aug 2010 10:04:05 +1000 Subject: 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 --- libcli/security/privileges.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'libcli') 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 ****************************************************************************/ -- cgit