Re: [PATCH] http: fix charset detection of extract_content_type()

2014-06-17 Thread Jeff King
On Sun, Jun 15, 2014 at 03:49:34AM +0900, nori wrote: extract_content_type() could not extract a charset parameter if the parameter is not the first one and there is a whitespace and a following semicolon just before the parameter. For example: text/plain; format=fixed ;charset=utf-8

Re: [PATCH] http: fix charset detection of extract_content_type()

2014-06-16 Thread Junio C Hamano
nori semtlen...@gmail.com writes: extract_content_type() could not extract a charset parameter if the parameter is not the first one and there is a whitespace and a following semicolon just before the parameter. For example: text/plain; format=fixed ;charset=utf-8 Signed-off-by: Yi

Re: [PATCH] http: fix charset detection of extract_content_type()

2014-06-16 Thread Jeff King
On Mon, Jun 16, 2014 at 11:29:39AM -0700, Junio C Hamano wrote: nori semtlen...@gmail.com writes: extract_content_type() could not extract a charset parameter if the parameter is not the first one and there is a whitespace and a following semicolon just before the parameter. For example:

Re: [PATCH] http: fix charset detection of extract_content_type()

2014-06-15 Thread Yi EungJun
Could you change the author to Yi EungJun eungjun...@navercorp.com if you apply this patch? -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] http: fix charset detection of extract_content_type()

2014-06-14 Thread nori
extract_content_type() could not extract a charset parameter if the parameter is not the first one and there is a whitespace and a following semicolon just before the parameter. For example: text/plain; format=fixed ;charset=utf-8 Signed-off-by: Yi EungJun eungjun...@navercorp.com ---