diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-17 11:27:36 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-17 13:28:44 +0000 |
commit | 36e6404228584370a42dd1d8012dc1902174988d (patch) | |
tree | 4ff5fd1d58a682a702a7899fa0a38e7ad19d0cc0 | |
parent | 930be07067c16218d3244917527315e1f947b610 (diff) |
http_negotiate_sspi: Prefer use of 'attrs' for context attributes
Use the same variable name as other areas of SSPI code.
-rw-r--r-- | lib/http_negotiate_sspi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/http_negotiate_sspi.c b/lib/http_negotiate_sspi.c index 207dc49c8..99e8f3899 100644 --- a/lib/http_negotiate_sspi.c +++ b/lib/http_negotiate_sspi.c @@ -53,8 +53,8 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, SecBufferDesc in_buff_desc; SecBuffer in_sec_buff; SECURITY_STATUS status; - unsigned long context_attributes; - TimeStamp expiry; + unsigned long attrs; + TimeStamp expiry; /* For Windows 9x compatibility of SSPI calls */ size_t len = 0, input_token_len = 0; CURLcode result; @@ -201,7 +201,7 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, 0, neg_ctx->context, &out_buff_desc, - &context_attributes, + &attrs, &expiry); Curl_safefree(input_token); |