From 6b921d1d2175f3b6267cb6e89b463cff852880cc Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 14 May 2004 05:41:21 +0000 Subject: r719: Follow the trend - remove more unused functions. Andrew Bartlett (This used to be commit 62eef851fd79b2739b93b4ed7829514a3dcbf1d0) --- source4/auth/auth_util.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'source4/auth/auth_util.c') diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index fda8c18fa4..e72368132a 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -406,21 +406,6 @@ void debug_nt_user_token(int dbg_class, int dbg_lev, NT_USER_TOKEN *token) sid_to_string(sid_str, token->user_sids[i]))); } -/**************************************************************************** - prints a UNIX 'token' to debug output. -****************************************************************************/ - -void debug_unix_user_token(int dbg_class, int dbg_lev, uid_t uid, gid_t gid, int n_groups, gid_t *groups) -{ - int i; - DEBUGC(dbg_class, dbg_lev, ("UNIX token of user %ld\n", (long int)uid)); - - DEBUGADDC(dbg_class, dbg_lev, ("Primary group is %ld and contains %i supplementary groups\n", (long int)gid, n_groups)); - for (i = 0; i < n_groups; i++) - DEBUGADDC(dbg_class, dbg_lev, ("Group[%3i]: %ld\n", i, - (long int)groups[i])); -} - /**************************************************************************** Create the SID list for this user. ****************************************************************************/ -- cgit