Author: danielsh
Date: Mon Apr 29 21:44:50 2013
New Revision: 1477359

URL: http://svn.apache.org/r1477359
Log:
Followup to r14613282:

* subversion/libsvn_wc/props.c
  (validate_eol_prop_against_file): Cater for translation extractor limitations.

Suggested by: mattiase

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=1477359&r1=1477358&r2=1477359&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/props.c (original)
+++ subversion/trunk/subversion/libsvn_wc/props.c Mon Apr 29 21:44:50 2013
@@ -1626,9 +1626,9 @@ validate_eol_prop_against_file(const cha
   if (mime_type && svn_mime_type_is_binary(mime_type->data))
     return svn_error_createf
       (SVN_ERR_ILLEGAL_TARGET, NULL,
-       _("Can't set '" SVN_PROP_EOL_STYLE "': "
+       _("Can't set '%s': "
          "file '%s' has binary mime type property"),
-       path_display);
+       SVN_PROP_EOL_STYLE, path_display);
 
   /* Now ask the getter for the contents of the file; this will do a
      newline translation.  All we really care about here is whether or


Reply via email to