]> granicus.if.org Git - curl/commitdiff
Enrico Scholz fixed the service name to be uppercase as reported in bug
authorDaniel Stenberg <daniel@haxx.se>
Thu, 5 Aug 2004 18:52:54 +0000 (18:52 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 5 Aug 2004 18:52:54 +0000 (18:52 +0000)
report #1004105

lib/http_negotiate.c

index 71bd3513afe4fee7b13b7b51a4430ba9afe12892..43f1da44bf63a2e81701b95f0b4c292aef3e3102 100644 (file)
@@ -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))