aboutsummaryrefslogtreecommitdiff
path: root/lib/http_negotiate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/http_negotiate.c')
-rw-r--r--lib/http_negotiate.c4
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))