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 1427FD5AC for ; Thu, 20 Dec 2012 16:37:13 +0000 (UTC) Received: (qmail 83534 invoked by uid 500); 20 Dec 2012 16:37:13 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 83500 invoked by uid 500); 20 Dec 2012 16:37:12 -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 83492 invoked by uid 99); 20 Dec 2012 16:37:12 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Dec 2012 16:37:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Dec 2012 16:37:11 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2ADD02388962; Thu, 20 Dec 2012 16:36:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1424578 - /subversion/trunk/subversion/libsvn_client/deprecated.c Date: Thu, 20 Dec 2012 16:36:50 -0000 To: commits@subversion.apache.org From: rhuijben@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121220163650.2ADD02388962@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rhuijben Date: Thu Dec 20 16:36:49 2012 New Revision: 1424578 URL: http://svn.apache.org/viewvc?rev=1424578&view=rev Log: * subversion/libsvn_client/deprecated.c (svn_client_commit5): Revert 1.7 api behavior of skipping file externals on commit, unless they are an explicit target of the commit. Passing TRUE will make them an explicit target. Modified: subversion/trunk/subversion/libsvn_client/deprecated.c Modified: subversion/trunk/subversion/libsvn_client/deprecated.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/deprecated.c?rev=1424578&r1=1424577&r2=1424578&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/deprecated.c (original) +++ subversion/trunk/subversion/libsvn_client/deprecated.c Thu Dec 20 16:36:49 2012 @@ -527,7 +527,7 @@ svn_client_commit5(const apr_array_heade { return svn_client_commit6(targets, depth, keep_locks, keep_changelists, commit_as_operations, - TRUE, /* include_file_externals */ + FALSE, /* include_file_externals */ FALSE, /* include_dir_externals */ changelists, revprop_table, commit_callback, commit_baton, ctx, pool);