mirror of
https://github.com/curl/curl.git
synced 2026-04-15 06:41:42 +03:00
Enrico Scholz fixed the service name to be uppercase as reported in bug
report #1004105
This commit is contained in:
parent
6b5a04cf83
commit
9c4ffcc250
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue