From 2b05ba77b4e072bb1c584738cc79538166444fd3 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 9 Feb 2011 16:52:35 +1100 Subject: s3-auth Rename cryptic 'ptok' to security_token This will allow the auth_serversupplied_info struct to be migrated to auth_session_info easier. Adnrew Bartlett Signed-off-by: Andrew Tridgell --- source3/smbd/sesssetup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbd/sesssetup.c') diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 12d046038c..5a1776e698 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -384,7 +384,7 @@ static void reply_spnego_kerberos(struct smb_request *req, /* we need to build the token for the user. make_server_info_guest() already does this */ - if ( !server_info->ptok ) { + if ( !server_info->security_token ) { ret = create_local_token( server_info ); if ( !NT_STATUS_IS_OK(ret) ) { DEBUG(10,("failed to create local token: %s\n", @@ -1643,7 +1643,7 @@ void reply_sesssetup_and_X(struct smb_request *req) return; } - if (!server_info->ptok) { + if (!server_info->security_token) { nt_status = create_local_token(server_info); if (!NT_STATUS_IS_OK(nt_status)) { -- cgit