Author: philip
Date: Fri Mar 15 12:59:55 2013
New Revision: 1456939
URL: http://svn.apache.org/r1456939
Log:
* subversion/libsvn_wc/update_editor.c
(path_join_under_root): Tweak error message to tell user which
directory has the invalid file.
Modified:
subversion/trunk/subversion/libsvn_wc/update_editor.c
Modified: subversion/trunk/subversion/libsvn_wc/update_editor.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/update_editor.c?rev=1456939&r1=1456938&r2=1456939&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/update_editor.c (original)
+++ subversion/trunk/subversion/libsvn_wc/update_editor.c Fri Mar 15 12:59:55
2013
@@ -1125,8 +1125,9 @@ path_join_under_root(const char **result
{
return svn_error_createf(
SVN_ERR_WC_OBSTRUCTED_UPDATE, NULL,
- _("'%s' is not valid as filename in a working copy path"),
- svn_dirent_local_style(add_path, pool));
+ _("'%s' is not valid as filename in directory '%s'"),
+ svn_dirent_local_style(add_path, pool),
+ svn_dirent_local_style(base_path, pool));
}
return SVN_NO_ERROR;