Author: cmpilato
Date: Tue May 10 14:08:19 2011
New Revision: 1101467

URL: http://svn.apache.org/viewvc?rev=1101467&view=rev
Log:
* notes/knobs,
* subversion/libsvn_ra_neon/commit.c,
* subversion/libsvn_ra_serf/commit.c
  Replace SVN_SERF_SEND_VTXN_NAME and SVN_NEON_SEND_VTXN_NAME with a single
  SVN_DAV_SEND_VTXN_NAME.

Modified:
    subversion/trunk/notes/knobs
    subversion/trunk/subversion/libsvn_ra_neon/commit.c
    subversion/trunk/subversion/libsvn_ra_serf/commit.c

Modified: subversion/trunk/notes/knobs
URL: 
http://svn.apache.org/viewvc/subversion/trunk/notes/knobs?rev=1101467&r1=1101466&r2=1101467&view=diff
==============================================================================
--- subversion/trunk/notes/knobs (original)
+++ subversion/trunk/notes/knobs Tue May 10 14:08:19 2011
@@ -40,8 +40,7 @@ SVN_DIFF3_HAS_DIFF_PROGRAM_ARG
 SVN_DISABLE_ENTRY_CACHE
 SVN_MERGE__ALLOW_ALL_FORWARD_MERGES_FROM_SELF
 SVN_USE_WIN32_CRASHHANDLER
-SVN_SERF_SEND_VTXN_NAME
-SVN_NEON_SEND_VTXN_NAME
+SVN_DAV_SEND_VTXN_NAME
 
 2.3 Debugging Support
 
@@ -167,18 +166,9 @@ SVN_I_LIKE_LATENCY_SO_IGNORE_HTTPV2
   Default:   defined (Windows only), not defined (elsewhere)
   Suggested: defined (Windows only), not defined
 
-4.6 SVN_SERF_SEND_VTXN_NAME
+4.6 SVN_DAV_SEND_VTXN_NAME
 
-  Scope:     libsvn_ra_serf
-  Purpose:   Testing VTXN name for v2 commits.
-             Defining this causes the client to send a VTXN name header.
-  Range:     definedness
-  Default:   not defined
-  Suggested: defined, not defined
-
-4.7 SVN_NEON_SEND_VTXN_NAME
-
-  Scope:     libsvn_ra_neon
+  Scope:     libsvn_ra_serf, libsvn_ra_neon
   Purpose:   Testing VTXN name for v2 commits.
              Defining this causes the client to send a VTXN name header.
   Range:     definedness

Modified: subversion/trunk/subversion/libsvn_ra_neon/commit.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_neon/commit.c?rev=1101467&r1=1101466&r2=1101467&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_neon/commit.c (original)
+++ subversion/trunk/subversion/libsvn_ra_neon/commit.c Tue May 10 14:08:19 2011
@@ -769,7 +769,7 @@ static svn_error_t * commit_open_root(vo
                                           cc->ras->me_resource, dir_pool));
       ne_add_request_header(req->ne_req, "Content-Type", SVN_SKEL_MIME_TYPE);
 
-#ifdef SVN_NEON_SEND_VTXN_NAME
+#ifdef SVN_DAV_SEND_VTXN_NAME
       /* Enable this to exercise the VTXN-NAME code based on a client
          supplied transaction name. */
       ne_add_request_header(req->ne_req, SVN_DAV_VTXN_NAME_HEADER,

Modified: subversion/trunk/subversion/libsvn_ra_serf/commit.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/commit.c?rev=1101467&r1=1101466&r2=1101467&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/commit.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/commit.c Tue May 10 14:08:19 2011
@@ -1203,7 +1203,7 @@ setup_post_headers(serf_bucket_t *header
                    void *baton,
                    apr_pool_t *pool)
 {
-#ifdef SVN_SERF_SEND_VTXN_NAME
+#ifdef SVN_DAV_SEND_VTXN_NAME
   /* Enable this to exercise the VTXN-NAME code based on a client
      supplied transaction name. */
   serf_bucket_headers_set(headers, SVN_DAV_VTXN_NAME_HEADER,


Reply via email to