Skip to content
Snippets Groups Projects
Commit 9c4ffcc2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Enrico Scholz fixed the service name to be uppercase as reported in bug

report #1004105
parent 6b5a04cf
No related branches found
No related tags found
No related merge requests found
......@@ -66,9 +66,9 @@ get_gss_name(struct connectdata *conn, gss_name_t *server)
/* IIS uses the <service>@<fqdn> form but uses 'http' as the service name */
if (neg_ctx->gss)
service = "khttp";
service = "KHTTP";
else
service = "http";
service = "HTTP";
token.length = strlen(service) + 1 + strlen(conn->host.name) + 1;
if (token.length + 1 > sizeof(name))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment