diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-06-03 22:34:13 +1000 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2012-06-19 10:38:13 +0200 |
commit | e49656e2ee596a481277a5a2c3dd5d3969411c19 (patch) | |
tree | 73a3810c85f79ad85f23a3f3a20cf7018fe9c3b5 /source4/auth | |
parent | 873ec60f5406aecdbb1f6a1149af517f21939e43 (diff) | |
download | samba-e49656e2ee596a481277a5a2c3dd5d3969411c19.tar.gz samba-e49656e2ee596a481277a5a2c3dd5d3969411c19.tar.bz2 samba-e49656e2ee596a481277a5a2c3dd5d3969411c19.zip |
auth: Use only security_token_is_system to determine that a user is SYSTEM
This removes the duplication on how to detect that a user is system in Samba
now that the smbd system account is also only SID_NT_SYSTEM we can use the same
check everywhere.
Andrew Bartlett
Signed-off-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/unix_token.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/auth/unix_token.c b/source4/auth/unix_token.c index 7a7d464f0d..38109452a4 100644 --- a/source4/auth/unix_token.c +++ b/source4/auth/unix_token.c @@ -142,8 +142,6 @@ NTSTATUS auth_session_info_fill_unix(struct wbc_context *wbc_ctx, session_info->unix_info = talloc_zero(session_info, struct auth_user_info_unix); NT_STATUS_HAVE_NO_MEMORY(session_info->unix_info); - session_info->unix_info->system = security_token_is_system(session_info->security_token); - session_info->unix_info->unix_name = talloc_asprintf(session_info->unix_info, "%s%s%s", session_info->info->domain_name, lpcfg_winbind_separator(lp_ctx), |