On Fri, Jul 12, 2013 at 2:53 AM, <bre...@apache.org> wrote: >... > +++ > subversion/branches/1.8.x-tristate-chunked-request/subversion/libsvn_ra_serf/serf.c > Fri Jul 12 06:53:40 2013 >... > @@ -293,12 +293,11 @@ load_config(svn_ra_serf__session_t *sess > SVN_CONFIG_OPTION_HTTP_MAX_CONNECTIONS, > session->max_connections)); > > - /* Do we need to take care with this proxy? */ > - SVN_ERR(svn_config_get_bool( > - config, &session->detect_chunking, > - server_group, > - OPTION_HTTP_DETECT_CHUNKING, > - session->detect_chunking)); > + /* Should we use chunked transfer encoding. */ > + SVN_ERR(svn_config_get_tristate(config, &chunked_requests, > + server_group, > + OPTION_HTTP_CHUNKED_REQUESTS, > + "auto", svn_tristate_unknown));
The last parameter should be chunked_requests (ie. use the value from the global options). >... Cheers, -g