From c2c68057975de6d6fbf506d1a664b03d63eef82b Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 26 Oct 2014 14:29:27 +0000 Subject: sspi: Renamed expiry time stamp variables Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms. --- lib/http_negotiate_sspi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/http_negotiate_sspi.c') diff --git a/lib/http_negotiate_sspi.c b/lib/http_negotiate_sspi.c index 61581f1f9..c260bc345 100644 --- a/lib/http_negotiate_sspi.c +++ b/lib/http_negotiate_sspi.c @@ -53,7 +53,7 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, SecBufferDesc in_buff_desc; SecBuffer in_sec_buff; unsigned long context_attributes; - TimeStamp lifetime; + TimeStamp expiry; int ret; size_t len = 0, input_token_len = 0; CURLcode error; @@ -158,7 +158,7 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, (TCHAR *) TEXT("Negotiate"), SECPKG_CRED_OUTBOUND, NULL, neg_ctx->p_identity, NULL, NULL, - neg_ctx->credentials, &lifetime); + neg_ctx->credentials, &expiry); if(neg_ctx->status != SEC_E_OK) return -1; } @@ -201,7 +201,7 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, neg_ctx->context, &out_buff_desc, &context_attributes, - &lifetime); + &expiry); Curl_safefree(input_token); -- cgit v1.2.3