From 8e99888e7b29817e2e242b8fe59a10465500807c Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 4 Dec 2001 03:47:44 +0000 Subject: Moved name_is_local to the correct place. Ooops. Jeremy. (This used to be commit 708c0a8d16ca86439e451def5f8d37f600ff15f1) --- source3/lib/username.c | 10 ++++++++++ source3/smbd/uid.c | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'source3') diff --git a/source3/lib/username.c b/source3/lib/username.c index 071943f2ff..fdb942cd23 100644 --- a/source3/lib/username.c +++ b/source3/lib/username.c @@ -25,6 +25,16 @@ static struct passwd *uname_string_combinations(char *s, struct passwd * (*fn) (const char *), int N); static struct passwd *uname_string_combinations2(char *s, int offset, struct passwd * (*fn) (const char *), int N); +/***************************************************************** + Check if a user or group name is local (this is a *local* name for + *local* people, there's nothing for you here...). +*****************************************************************/ + +BOOL name_is_local(const char *name) +{ + return !strchr_m(name, *lp_winbind_separator()); +} + /**************************************************************************** Get a users home directory. ****************************************************************************/ diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index 9a9de0a796..524ddb15ab 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -436,16 +436,6 @@ void add_supplementary_nt_login_groups(int *n_groups, gid_t **pp_groups, NT_USER *pptok = new_tok; } -/***************************************************************** - Check if a user or group name is local (this is a *local* name for - *local* people, there's nothing for you here...). -*****************************************************************/ - -BOOL name_is_local(const char *name) -{ - return !strchr_m(name, *lp_winbind_separator()); -} - /***************************************************************** *THE CANONICAL* convert name to SID function. Tries winbind first - then uses local lookup. -- cgit