You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/09/21 16:44:25 UTC

svn commit: r999441 - /subversion/branches/atomic-revprop/subversion/svnsync/main.c

Author: danielsh
Date: Tue Sep 21 14:44:25 2010
New Revision: 999441

URL: http://svn.apache.org/viewvc?rev=999441&view=rev
Log:
On the atomic-revprop branch:

* subversion/svnsync/main.c
  (with_locked):  English fix in error message.

Modified:
    subversion/branches/atomic-revprop/subversion/svnsync/main.c

Modified: subversion/branches/atomic-revprop/subversion/svnsync/main.c
URL: http://svn.apache.org/viewvc/subversion/branches/atomic-revprop/subversion/svnsync/main.c?rev=999441&r1=999440&r2=999441&view=diff
==============================================================================
--- subversion/branches/atomic-revprop/subversion/svnsync/main.c (original)
+++ subversion/branches/atomic-revprop/subversion/svnsync/main.c Tue Sep 21 14:44:25 2010
@@ -464,7 +464,8 @@ with_locked(svn_ra_session_t *session,
                                  be_atomic ? &lock_string : NULL, NULL, pool);
   if (is_atomicity_error(err2))
     err2 = svn_error_quick_wrap(err2,
-                                _("svnsync lock was stolen; can't remove it"));
+                                _("svnsync's lock was stolen; "
+                                  "can't remove it"));
 
 
   return svn_error_compose_create(err, svn_error_return(err2));