summaryrefslogtreecommitdiff
path: root/source3/lib/username.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-12-17 15:38:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:05:52 -0500
commite1dd50bfd753b08575ead364a0c18276e65a6b01 (patch)
tree19d500c4e6c4f4835ff09caab7ac2d0cb6e3044e /source3/lib/username.c
parent8ee13ab866659a734c3272f4bbbd95cb87ec26f7 (diff)
downloadsamba-e1dd50bfd753b08575ead364a0c18276e65a6b01.tar.gz
samba-e1dd50bfd753b08575ead364a0c18276e65a6b01.tar.bz2
samba-e1dd50bfd753b08575ead364a0c18276e65a6b01.zip
r12303: Move split_domain_and_name to util_getent.c and make it static there.
Volker (This used to be commit e7f348fcf871e8559ecf4e3e597627a78187d1da)
Diffstat (limited to 'source3/lib/username.c')
-rw-r--r--source3/lib/username.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/source3/lib/username.c b/source3/lib/username.c
index 1973a8c7c6..403a0bc09f 100644
--- a/source3/lib/username.c
+++ b/source3/lib/username.c
@@ -35,34 +35,6 @@ static BOOL name_is_local(const char *name)
return !(strchr_m(name, *lp_winbind_separator()));
}
-/*****************************************************************
- Splits passed user or group name to domain and user/group name parts
- Returns True if name was splitted and False otherwise.
-*****************************************************************/
-
-BOOL split_domain_and_name(const char *name, char *domain, char* username)
-{
- char *p = strchr(name,*lp_winbind_separator());
-
-
- /* Parse a string of the form DOMAIN/user into a domain and a user */
- DEBUG(10,("split_domain_and_name: checking whether name |%s| local or not\n", name));
-
- if (p) {
- fstrcpy(username, p+1);
- fstrcpy(domain, name);
- domain[PTR_DIFF(p, name)] = 0;
- } else if (lp_winbind_use_default_domain()) {
- fstrcpy(username, name);
- fstrcpy(domain, lp_workgroup());
- } else {
- return False;
- }
-
- DEBUG(10,("split_domain_and_name: all is fine, domain is |%s| and name is |%s|\n", domain, username));
- return True;
-}
-
/****************************************************************************
Get a users home directory.
****************************************************************************/