[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] Directory name missing on svn propset

From: Branko Čibej <brane_at_xbc.nu>
Date: 2004-07-02 20:24:44 CEST

Thanks. Committed in r10125.

Øyvind A. Holm wrote:

>When performing a "svn propset foo bar .", this happens:
>
>$ svn ps foo bar .
>property 'foo' set on ''
>
>The ''’s are empty only when the file name is ".". The following patch
>should fix it.
>
>
>[[[
>Print property name as '.' instead of '' when specifying . to
>svn propset.
>
>* subversion/clients/cmdline/propset-cmd.c
> (svn_cl__propset): Use svn_path_local_style() when printing the
> message.
>]]]
>
>
>Index: subversion/clients/cmdline/propset-cmd.c
>===================================================================
>--- subversion/clients/cmdline/propset-cmd.c (revision 10122)
>+++ subversion/clients/cmdline/propset-cmd.c (working copy)
>@@ -195,7 +195,7 @@
> (pool, opt_state->recursive
> ? _("property '%s' set (recursively) on '%s'\n")
> : _("property '%s' set on '%s'\n"),
>- pname, target));
>+ pname, svn_path_local_style (target, pool)));
> }
> }
> svn_pool_destroy (subpool);
>
>
>Regards,
>Øyvind A. Holm
>---------------------
>cat /dev/urandom >SCO
>
>
-- Brane

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Jul 2 20:28:11 2004

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.