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);