Skip to content

Commit

Permalink
http_negotiate_sspi: Prefer use of 'attrs' for context attributes
Browse files Browse the repository at this point in the history
Use the same variable name as other areas of SSPI code.
  • Loading branch information
captain-caveman2k committed Jan 17, 2015
1 parent 930be07 commit 36e6404
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/http_negotiate_sspi.c
Expand Up @@ -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;

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 36e6404

Please sign in to comment.