Author: danielsh
Date: Thu Jul  8 22:45:46 2010
New Revision: 961970

URL: http://svn.apache.org/viewvc?rev=961970&view=rev
Log:
Make an error message clearer.

See this thread (on users@):
http://thread.gmane.org/[email protected]

* subversion/libsvn_wc/props.c
  (svn_wc_canonicalize_svn_prop):
        Including the propset'd value in the error message (this helps with
        broken [auto-props] config).

Modified:
    subversion/trunk/subversion/libsvn_wc/props.c

Modified: subversion/trunk/subversion/libsvn_wc/props.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/props.c?rev=961970&r1=961969&r2=961970&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/props.c (original)
+++ subversion/trunk/subversion/libsvn_wc/props.c Thu Jul  8 22:45:46 2010
@@ -2613,7 +2613,8 @@ svn_wc_canonicalize_svn_prop(const svn_s
       svn_subst_eol_style_from_value(&eol_style, &ignored_eol, 
new_value->data);
       if (eol_style == svn_subst_eol_style_unknown)
         return svn_error_createf(SVN_ERR_IO_UNKNOWN_EOL, NULL,
-                                 _("Unrecognized line ending style for '%s'"),
+                                 _("Unrecognized line ending style '%s' for 
'%s'"),
+                                 new_value->data,
                                  svn_dirent_local_style(path, pool));
       SVN_ERR(validate_eol_prop_against_file(path, getter, getter_baton,
                                              pool));


Reply via email to