Re: svn commit: r1696592 - in /httpd/httpd/trunk/modules/http2: h2_alt_svc.c h2_conn.c h2_from_h1.c h2_request.c h2_switch.c

2015-08-19 Thread Stefan Eissing
> Am 19.08.2015 um 16:37 schrieb William A Rowe Jr : > h2_alt_svc *h2_alt_svc_parse(const char *s, apr_pool_t *pool) { > -const char *sep = strchr(s, '='); > +const char *sep = strchr((char *)s, '='); > > > We solve these issues with ap_strchr_c, ap_strrchr_c, ap_strstr_c etc. This >

Re: svn commit: r1696592 - in /httpd/httpd/trunk/modules/http2: h2_alt_svc.c h2_conn.c h2_from_h1.c h2_request.c h2_switch.c

2015-08-19 Thread William A Rowe Jr
On Wed, Aug 19, 2015 at 9:13 AM, wrote: > Author: icing > Date: Wed Aug 19 14:13:49 2015 > New Revision: 1696592 > > URL: http://svn.apache.org/r1696592 > Log: > mod_h2 compiles warning free in maintainer-mode > > --- httpd/httpd/trunk/modules/http2/h2_alt_svc.c (original) > +++ httpd/httpd/trunk