breser@tigris.org writes:
> --- trunk/subversion/libsvn_wc/questions.c (original)
> +++ trunk/subversion/libsvn_wc/questions.c Thu Nov 4 22:19:51 2004
> @@ -103,7 +103,7 @@
> (SVN_ERR_WC_UNSUPPORTED_FORMAT, NULL,
> _("Working copy format of '%s' is too old (%d); "
> "please check out your working copy again"),
> - path, wc_format);
> + svn_path_local_style(path,pool), wc_format);
> }
> else if (wc_format > SVN_WC__VERSION)
> {
> @@ -111,7 +111,7 @@
> (SVN_ERR_WC_UNSUPPORTED_FORMAT, NULL,
> _("This client is too old to work with working copy '%s'; "
> "please get a newer Subversion client"),
> - path);
> + svn_path_local_style(path,pool));
> }
>
> return SVN_NO_ERROR;
Not a huge deal, but note that the local style in this file is
space-between-function-name-and-opening-paren.
-K
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Nov 5 17:18:37 2004