aboutsummaryrefslogtreecommitdiff
path: root/lib/http_negotiate.c
diff options
context:
space:
mode:
authorJulien Chaffraix <julien.chaffraix@gmail.com>2011-06-10 08:26:34 -0700
committerJulien Chaffraix <julien.chaffraix@gmail.com>2011-07-12 07:06:26 -0700
commit2af0287856ca0ba7fc4d80bf94e46bb2d4c6d96c (patch)
tree1476d96ea06090297aa86110ba73ecdc57200fa0 /lib/http_negotiate.c
parent20485a48858ea35351ca69060f56353eace0521c (diff)
gssapi.c: Simplified the function.
Removed the parameters that were common to all our invocation.
Diffstat (limited to 'lib/http_negotiate.c')
-rw-r--r--lib/http_negotiate.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c
index 075a52062..e4a8ff259 100644
--- a/lib/http_negotiate.c
+++ b/lib/http_negotiate.c
@@ -240,18 +240,11 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy,
}
major_status = Curl_gss_init_sec_context(&minor_status,
- GSS_C_NO_CREDENTIAL,
&neg_ctx->context,
neg_ctx->server_name,
- GSS_C_NO_OID,
- GSS_C_MUTUAL_FLAG
- | GSS_C_REPLAY_FLAG,
- 0,
GSS_C_NO_CHANNEL_BINDINGS,
&input_token,
- NULL,
&output_token,
- NULL,
NULL);
if(input_token.length > 0)
gss_release_buffer(&minor_status2, &input_token);