Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B55C0200BCC for ; Tue, 29 Nov 2016 15:19:50 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B022F160B15; Tue, 29 Nov 2016 14:19:50 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 06308160B05 for ; Tue, 29 Nov 2016 15:19:49 +0100 (CET) Received: (qmail 49037 invoked by uid 500); 29 Nov 2016 14:19:49 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 49027 invoked by uid 99); 29 Nov 2016 14:19:48 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Nov 2016 14:19:48 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 872451A7ADE for ; Tue, 29 Nov 2016 14:19:48 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id Vzu4ON2eyrTF for ; Tue, 29 Nov 2016 14:19:47 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id A68A85F5F9 for ; Tue, 29 Nov 2016 14:19:46 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id A4768E01A7 for ; Tue, 29 Nov 2016 14:19:45 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 521D93A0EB1 for ; Tue, 29 Nov 2016 14:19:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1771909 - /subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c Date: Tue, 29 Nov 2016 14:19:44 -0000 To: commits@subversion.apache.org From: stsp@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20161129141945.521D93A0EB1@svn01-us-west.apache.org> archived-at: Tue, 29 Nov 2016 14:19:50 -0000 Author: stsp Date: Tue Nov 29 14:19:44 2016 New Revision: 1771909 URL: http://svn.apache.org/viewvc?rev=1771909&view=rev Log: * subversion/libsvn_client/conflicts.c (tc_editor_merge_local_file_change): Rename to ... (tc_editor_update_incoming_moved_file): ... this. (update_incoming_moved_node): Update caller. Modified: subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c Modified: subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c?rev=1771909&r1=1771908&r2=1771909&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c (original) +++ subversion/trunk/subversion/libsvn_wc/wc_db_update_move.c Tue Nov 29 14:19:44 2016 @@ -1421,15 +1421,15 @@ tc_editor_alter_file(node_move_baton_t * } static svn_error_t * -tc_editor_merge_local_file_change(node_move_baton_t *nmb, - const char *dst_relpath, - const char *src_relpath, - const svn_checksum_t *src_checksum, - const svn_checksum_t *dst_checksum, - apr_hash_t *dst_props, - apr_hash_t *src_props, - svn_boolean_t do_text_merge, - apr_pool_t *scratch_pool) +tc_editor_update_incoming_moved_file(node_move_baton_t *nmb, + const char *dst_relpath, + const char *src_relpath, + const svn_checksum_t *src_checksum, + const svn_checksum_t *dst_checksum, + apr_hash_t *dst_props, + apr_hash_t *src_props, + svn_boolean_t do_text_merge, + apr_pool_t *scratch_pool) { update_move_baton_t *b = nmb->umb; working_node_version_t old_version, new_version; @@ -2512,13 +2512,14 @@ update_incoming_moved_node(node_move_bat FALSE /* exact_comparison */, scratch_pool)); if (!props_equal || is_modified) - SVN_ERR(tc_editor_merge_local_file_change(nmb, dst_relpath, - victim_relpath, - working_checksum, - orig_checksum, - orig_props, working_props, - is_modified, - scratch_pool)); + SVN_ERR(tc_editor_update_incoming_moved_file(nmb, dst_relpath, + victim_relpath, + working_checksum, + orig_checksum, + orig_props, + working_props, + is_modified, + scratch_pool)); } else if (working_kind == svn_node_dir) {