From: Daniel Stenberg Date: Thu, 5 Aug 2004 18:52:54 +0000 (+0000) Subject: Enrico Scholz fixed the service name to be uppercase as reported in bug X-Git-Tag: curl-7_12_1~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c4ffcc25097cedfa71dce42d4bdbcf273765313;p=curl Enrico Scholz fixed the service name to be uppercase as reported in bug report #1004105 --- 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))