Deleted Added
full compact
switch.c (251886) switch.c (253734)
1/*
2 * switch.c: implement 'switch' feature via WC & RA interfaces.
3 *
4 * ====================================================================
5 * Licensed to the Apache Software Foundation (ASF) under one
6 * or more contributor license agreements. See the NOTICE file
7 * distributed with this work for additional information
8 * regarding copyright ownership. The ASF licenses this file

--- 227 unchanged lines hidden (view full) ---

236 SVN_ERR(svn_client__get_youngest_common_ancestor(
237 &yca, switch_loc, target_base_loc, ra_session, ctx,
238 pool, pool));
239 }
240 if (! yca)
241 return svn_error_createf(SVN_ERR_CLIENT_UNRELATED_RESOURCES, NULL,
242 _("'%s' shares no common ancestry with '%s'"),
243 switch_url,
1/*
2 * switch.c: implement 'switch' feature via WC & RA interfaces.
3 *
4 * ====================================================================
5 * Licensed to the Apache Software Foundation (ASF) under one
6 * or more contributor license agreements. See the NOTICE file
7 * distributed with this work for additional information
8 * regarding copyright ownership. The ASF licenses this file

--- 227 unchanged lines hidden (view full) ---

236 SVN_ERR(svn_client__get_youngest_common_ancestor(
237 &yca, switch_loc, target_base_loc, ra_session, ctx,
238 pool, pool));
239 }
240 if (! yca)
241 return svn_error_createf(SVN_ERR_CLIENT_UNRELATED_RESOURCES, NULL,
242 _("'%s' shares no common ancestry with '%s'"),
243 switch_url,
244 svn_dirent_dirname(local_abspath, pool));
244 svn_dirent_local_style(local_abspath, pool));
245 }
246
247 wcroot_iprops = apr_hash_make(pool);
248
249 /* Will the base of LOCAL_ABSPATH require an iprop cache post-switch?
250 If we are switching LOCAL_ABSPATH to the root of the repository then
251 we don't need to cache inherited properties. In all other cases we
252 *might* need to cache iprops. */

--- 235 unchanged lines hidden ---
245 }
246
247 wcroot_iprops = apr_hash_make(pool);
248
249 /* Will the base of LOCAL_ABSPATH require an iprop cache post-switch?
250 If we are switching LOCAL_ABSPATH to the root of the repository then
251 we don't need to cache inherited properties. In all other cases we
252 *might* need to cache iprops. */

--- 235 unchanged lines hidden ---