Author: mattiase
Date: Sun Apr 14 17:02:41 2013
New Revision: 1467803

URL: http://svn.apache.org/r1467803
Log:
Add missing newline to the message when doing propset
on a nonexisting file.

* subversion/svn/notify.c
  (notify): Add missing newline, keeping the string itself
   intact to be nice to the translators.

Approved by: breser

Modified:
    subversion/trunk/subversion/svn/notify.c

Modified: subversion/trunk/subversion/svn/notify.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/notify.c?rev=1467803&r1=1467802&r2=1467803&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/notify.c (original)
+++ subversion/trunk/subversion/svn/notify.c Sun Apr 14 17:02:41 2013
@@ -1050,8 +1050,9 @@ notify(void *baton, const svn_wc_notify_
       break;
 
     case svn_wc_notify_path_nonexistent:
-      err = svn_cmdline_printf(pool, _("'%s' is not under version control"),
-                               path_local);
+      err = svn_cmdline_printf(pool, "%s\n",
+               apr_psprintf(pool, _("'%s' is not under version control"),
+                            path_local));
       if (err)
         goto print_error;
       break;


Reply via email to