summaryrefslogtreecommitdiff
path: root/source3/auth/auth_util.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-04-01 14:03:17 -0700
committerJeremy Allison <jra@samba.org>2009-04-01 14:03:17 -0700
commitaef0bdc6a1ffdf746ce9ce27c45b3ca4f6593ba9 (patch)
treefc5fc5852fc59fd41536ca33cae3ebe0b2b330c2 /source3/auth/auth_util.c
parenteaddcfef1ba553744ae9293feaf7585ec9aaa0db (diff)
parent01a942d8ab5b5e430eb928dd58626fe16b9b04fe (diff)
downloadsamba-aef0bdc6a1ffdf746ce9ce27c45b3ca4f6593ba9.tar.gz
samba-aef0bdc6a1ffdf746ce9ce27c45b3ca4f6593ba9.tar.bz2
samba-aef0bdc6a1ffdf746ce9ce27c45b3ca4f6593ba9.zip
Merge branch 'master' of ssh://jra@git.samba.org/data/git/samba
Diffstat (limited to 'source3/auth/auth_util.c')
-rw-r--r--source3/auth/auth_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index c39aa8501d..cf6588ad82 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -58,7 +58,7 @@ static void sort_sid_array_for_smbd(auth_serversupplied_info *result,
Create a UNIX user on demand.
****************************************************************************/
-static int smb_create_user(const char *domain, const char *unix_username, const char *homedir)
+static int _smb_create_user(const char *domain, const char *unix_username, const char *homedir)
{
TALLOC_CTX *ctx = talloc_tos();
char *add_script;
@@ -1567,7 +1567,7 @@ struct passwd *smb_getpwnam( TALLOC_CTX *mem_ctx, char *domuser,
if (username[strlen(username)-1] == '$')
return NULL;
- smb_create_user(NULL, username, NULL);
+ _smb_create_user(NULL, username, NULL);
pw = Get_Pwnam_alloc(mem_ctx, username);
}