You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by sv...@apache.org on 2013/06/28 06:00:46 UTC

svn commit: r1497641 - in /subversion/branches/1.8.x: ./ STATUS subversion/libsvn_ra_serf/update.c

Author: svn-role
Date: Fri Jun 28 04:00:45 2013
New Revision: 1497641

URL: http://svn.apache.org/r1497641
Log:
Merge r1497551 from trunk:

 * r1497551
   Fix the Accept-Encoding header format
   Justification:
     When IIS is used as a reverse-proxy, it chokes. And we should use the
     format from the specification anyways :-P
   Votes:
     +1: gstein, brane, danielsh

Modified:
    subversion/branches/1.8.x/   (props changed)
    subversion/branches/1.8.x/STATUS
    subversion/branches/1.8.x/subversion/libsvn_ra_serf/update.c

Propchange: subversion/branches/1.8.x/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1497551

Modified: subversion/branches/1.8.x/STATUS
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1497641&r1=1497640&r2=1497641&view=diff
==============================================================================
--- subversion/branches/1.8.x/STATUS (original)
+++ subversion/branches/1.8.x/STATUS Fri Jun 28 04:00:45 2013
@@ -173,11 +173,3 @@ Veto-blocked changes:
 Approved changes:
 =================
 
- * r1497551
-   Fix the Accept-Encoding header format
-   Justification:
-     When IIS is used as a reverse-proxy, it chokes. And we should use the
-     format from the specification anyways :-P
-   Votes:
-     +1: gstein, brane, danielsh
-

Modified: subversion/branches/1.8.x/subversion/libsvn_ra_serf/update.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/libsvn_ra_serf/update.c?rev=1497641&r1=1497640&r2=1497641&view=diff
==============================================================================
--- subversion/branches/1.8.x/subversion/libsvn_ra_serf/update.c (original)
+++ subversion/branches/1.8.x/subversion/libsvn_ra_serf/update.c Fri Jun 28 04:00:45 2013
@@ -2739,7 +2739,7 @@ setup_update_report_headers(serf_bucket_
   if (report->sess->using_compression)
     {
       serf_bucket_headers_setn(headers, "Accept-Encoding",
-                               "gzip;svndiff1;q=0.9,svndiff;q=0.8");
+                               "gzip,svndiff1;q=0.9,svndiff;q=0.8");
     }
   else
     {