summaryrefslogtreecommitdiff
path: root/source4/auth/session.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-12-20 16:07:40 +1100
committerAndrew Bartlett <abartlet@samba.org>2010-12-21 15:10:37 +1100
commitbecaa18a46f4ee14d8617c22e78da463fda823b2 (patch)
tree3272b367286e7a7bf5f536e61f63bf7dcb67cbf6 /source4/auth/session.c
parent912faf1b080736a4855e3ea99b49f0ccbf76af33 (diff)
downloadsamba-becaa18a46f4ee14d8617c22e78da463fda823b2.tar.gz
samba-becaa18a46f4ee14d8617c22e78da463fda823b2.tar.bz2
samba-becaa18a46f4ee14d8617c22e78da463fda823b2.zip
s4-auth Remove obsolete comment
The code that this referred to went away in September with 7dbfeb0dc040889244a1110940af2d070f823374 Andrew Bartlett
Diffstat (limited to 'source4/auth/session.c')
-rw-r--r--source4/auth/session.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source4/auth/session.c b/source4/auth/session.c
index dce00b9043..37c469b4f7 100644
--- a/source4/auth/session.c
+++ b/source4/auth/session.c
@@ -64,13 +64,6 @@ _PUBLIC_ NTSTATUS auth_generate_session_info(TALLOC_CTX *mem_ctx,
TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
NT_STATUS_HAVE_NO_MEMORY(tmp_ctx);
- /* For now, we don't have trusted domains, so we do a very
- * simple check to see that the user's SID is in *this*
- * domain, and then trust the user account control. When we
- * get trusted domains, we should check it's a trusted domain
- * in this forest. This elaborate check is to try and avoid a
- * nasty security bug if we forget about this later... */
-
session_info = talloc(tmp_ctx, struct auth_session_info);
NT_STATUS_HAVE_NO_MEMORY_AND_FREE(session_info, tmp_ctx);