Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EC1BF10C7D for ; Tue, 17 Feb 2015 15:22:33 +0000 (UTC) Received: (qmail 6560 invoked by uid 500); 17 Feb 2015 15:22:21 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 6533 invoked by uid 500); 17 Feb 2015 15:22:21 -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 6519 invoked by uid 99); 17 Feb 2015 15:22:21 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2015 15:22:21 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 1BFB0AC00A8 for ; Tue, 17 Feb 2015 15:22:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1660411 - /subversion/trunk/subversion/tests/libsvn_wc/utils.c Date: Tue, 17 Feb 2015 15:22:21 -0000 To: commits@subversion.apache.org From: rhuijben@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150217152221.1BFB0AC00A8@hades.apache.org> Author: rhuijben Date: Tue Feb 17 15:22:20 2015 New Revision: 1660411 URL: http://svn.apache.org/r1660411 Log: * subversion/tests/libsvn_wc/utils.c (sbox_wc_copy_url): Resolve deprecation warning by calling updated function. Modified: subversion/trunk/subversion/tests/libsvn_wc/utils.c Modified: subversion/trunk/subversion/tests/libsvn_wc/utils.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/utils.c?rev=1660411&r1=1660410&r2=1660411&view=diff ============================================================================== --- subversion/trunk/subversion/tests/libsvn_wc/utils.c (original) +++ subversion/trunk/subversion/tests/libsvn_wc/utils.c Tue Feb 17 15:22:20 2015 @@ -280,8 +280,13 @@ sbox_wc_copy_url(svn_test__sandbox_t *b, APR_ARRAY_PUSH(sources, svn_client_copy_source_t *) = src; - SVN_ERR(svn_client_copy6(sources, sbox_wc_path(b, to_path), - FALSE, FALSE, FALSE, NULL, NULL, NULL, + SVN_ERR(svn_client_copy7(sources, sbox_wc_path(b, to_path), + FALSE /* copy_as_child */, + FALSE /* make_parents */, + FALSE /* ignore_externals */, + FALSE, NULL /* pin_external */, + NULL /* revprops */, + NULL, NULL, /* commit_callback */ ctx, scratch_pool)); ctx->wc_ctx = NULL;