aboutsummaryrefslogtreecommitdiff
path: root/lib/http_negotiate_sspi.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-10-26 14:29:27 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-10-26 14:34:06 +0000
commitc2c68057975de6d6fbf506d1a664b03d63eef82b (patch)
tree86a100f5e6cfd056ec18e1a7922fe62ca46f2f0e /lib/http_negotiate_sspi.c
parent9c613ade7a7157d51db227e9070e8de555ae3053 (diff)
sspi: Renamed expiry time stamp variables
Code cleanup to try and synchronise code between the different SSPI based authentication mechanisms.
Diffstat (limited to 'lib/http_negotiate_sspi.c')
-rw-r--r--lib/http_negotiate_sspi.c6
1 files changed, 3 insertions, 3 deletions
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);