summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-12-09 18:34:26 +0000
committerJeremy Allison <jra@samba.org>2003-12-09 18:34:26 +0000
commit0785295fe067093ea1483fc19e30c63512018db3 (patch)
treed10949a7c4edcd32db9245f9e1f05a11c1fbd482
parent0054ce8707038444bec8c4ac8f0deea12ef65820 (diff)
downloadsamba-0785295fe067093ea1483fc19e30c63512018db3.tar.gz
Final part of fix for #445. Don't add user for machine accounts.
Jeremy.
-rw-r--r--source/auth/auth_util.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/auth/auth_util.c b/source/auth/auth_util.c
index 6df31b94a71..3dc0fdbe464 100644
--- a/source/auth/auth_util.c
+++ b/source/auth/auth_util.c
@@ -983,6 +983,10 @@ struct passwd *smb_getpwnam( char *domuser )
map_username( mapped_username );
pw = Get_Pwnam(mapped_username);
if (!pw) {
+ /* Don't add a machine account. */
+ if (mapped_username[strlen(mapped_username)-1] == '$')
+ return NULL;
+
/* Create local user if requested. */
p = strchr( mapped_username, *lp_winbind_separator() );
if (p)