From 08d20ece96942aa7c96ec79a3c23f29db45105e3 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 8 Aug 2008 14:04:08 +1000 Subject: Clarify comment (This used to be commit 580cce9de38ddd9d59b272b58caadce528321d09) --- source4/auth/session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/auth') diff --git a/source4/auth/session.c b/source4/auth/session.c index 8f5e8d6c56..b254ee5da6 100644 --- a/source4/auth/session.c +++ b/source4/auth/session.c @@ -98,14 +98,14 @@ _PUBLIC_ NTSTATUS auth_anonymous_server_info(TALLOC_CTX *mem_ctx, server_info->n_domain_groups = 0; server_info->domain_groups = NULL; - /* annoying, but the Anonymous really does have a session key, - and it is all zeros! */ + /* annoying, but the Anonymous really does have a session key... */ server_info->user_session_key = data_blob_talloc(server_info, NULL, 16); NT_STATUS_HAVE_NO_MEMORY(server_info->user_session_key.data); server_info->lm_session_key = data_blob_talloc(server_info, NULL, 16); NT_STATUS_HAVE_NO_MEMORY(server_info->lm_session_key.data); + /* and it is all zeros! */ data_blob_clear(&server_info->user_session_key); data_blob_clear(&server_info->lm_session_key); -- cgit