Commit 9c4ffcc2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Enrico Scholz fixed the service name to be uppercase as reported in bug

report #1004105
parent 6b5a04cf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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))