Deleted Added
full compact
update.c (257936) update.c (262250)
1/*
2 * update.c: wrappers around wc update functionality
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

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

378 {
379 const char *new_repos_root_url;
380
381 /* To relocate everything inside our repository we need the old and new
382 repos root. */
383 SVN_ERR(svn_ra_get_repos_root2(ra_session, &new_repos_root_url, pool));
384
385 /* svn_client_relocate2() will check the uuid */
1/*
2 * update.c: wrappers around wc update functionality
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

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

378 {
379 const char *new_repos_root_url;
380
381 /* To relocate everything inside our repository we need the old and new
382 repos root. */
383 SVN_ERR(svn_ra_get_repos_root2(ra_session, &new_repos_root_url, pool));
384
385 /* svn_client_relocate2() will check the uuid */
386 SVN_ERR(svn_client_relocate2(anchor_abspath, anchor_url,
386 SVN_ERR(svn_client_relocate2(anchor_abspath, repos_root_url,
387 new_repos_root_url, ignore_externals,
388 ctx, pool));
389
390 /* Store updated repository root for externals */
391 repos_root_url = new_repos_root_url;
392 /* ### We should update anchor_loc->repos_uuid too, although currently
393 * we don't use it. */
394 anchor_url = corrected_url;

--- 329 unchanged lines hidden ---
387 new_repos_root_url, ignore_externals,
388 ctx, pool));
389
390 /* Store updated repository root for externals */
391 repos_root_url = new_repos_root_url;
392 /* ### We should update anchor_loc->repos_uuid too, although currently
393 * we don't use it. */
394 anchor_url = corrected_url;

--- 329 unchanged lines hidden ---