Author: rhuijben
Date: Thu Dec 19 21:19:24 2013
New Revision: 1552436
URL: http://svn.apache.org/r1552436
Log:
* subversion/libsvn_ra_serf/serf.c
(ra_serf_dup_session): Following up on r1552325, rely on the check in
svn_ra_dup_session() instead of checking again (and causing a linking
problem).
Modified:
subversion/trunk/subversion/libsvn_ra_serf/serf.c
Modified: subversion/trunk/subversion/libsvn_ra_serf/serf.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/serf.c?rev=1552436&r1=1552435&r2=1552436&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/serf.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/serf.c Thu Dec 19 21:19:24 2013
@@ -611,14 +611,6 @@ ra_serf_dup_session(svn_ra_session_t *ne
svn_ra_serf__session_t *new_sess;
apr_status_t status;
- if (new_session_url)
- {
- const char *dummy;
- SVN_ERR(svn_ra_get_path_relative_to_root(old_session, &dummy,
- new_session_url,
- scratch_pool));
- }
-
new_sess = apr_pmemdup(result_pool, old_sess, sizeof(*new_sess));
new_sess->pool = result_pool;