From 9c4ffcc25097cedfa71dce42d4bdbcf273765313 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 5 Aug 2004 18:52:54 +0000 Subject: [PATCH] Enrico Scholz fixed the service name to be uppercase as reported in bug report #1004105 --- lib/http_negotiate.c | 4 ++-- 1 file 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 @ 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))