diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-08-05 18:52:54 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-08-05 18:52:54 +0000 |
commit | 9c4ffcc25097cedfa71dce42d4bdbcf273765313 (patch) | |
tree | 1a2bf471119e70bb5c5aa9bae83abafae36e6337 /lib/http_negotiate.c | |
parent | 6b5a04cf833710f40dd0e8e651ebe7c1ad1b93b2 (diff) |
Enrico Scholz fixed the service name to be uppercase as reported in bug
report #1004105
Diffstat (limited to 'lib/http_negotiate.c')
-rw-r--r-- | lib/http_negotiate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c index 71bd3513a..43f1da44b 100644 --- a/lib/http_negotiate.c +++ b/lib/http_negotiate.c @@ -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)) |