From c553fd1c1ef76688b6200e66a825b530b0b02140 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Thu, 22 May 2014 05:36:12 -0400 Subject: [PATCH] http: default text charset to iso-8859-1 This is specified by RFC 2616 as the default if no "charset" parameter is given. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- http.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/http.c b/http.c index 84463dff3..2b4f6a357 100644 --- a/http.c +++ b/http.c @@ -978,6 +978,9 @@ static void extract_content_type(struct strbuf *raw, struct strbuf *type, while (*p && !isspace(*p)) p++; } + + if (!charset->len && starts_with(type->buf, "text/")) + strbuf_addstr(charset, "ISO-8859-1"); } /* http_request() targets */