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

Re: CVS update: subversion/subversion/client checkout-cmd.c

From: Karl Fogel <kfogel_at_galois.collab.net>
Date: 2001-03-16 02:35:42 CET

fitz@tigris.org writes:
> Log:
> Revert previous commit that Karl made at my direction because I am
> a chowerhead and didn't look closely at what Ben was doing. Duh.

I feel so used...

Sniff,
-Karl

>
> Revision Changes Path
> 1.16 +10 -12 subversion/subversion/client/checkout-cmd.c
>
> Index: checkout-cmd.c
> ===================================================================
> RCS file: /cvs/subversion/subversion/client/checkout-cmd.c,v
> retrieving revision 1.15
> retrieving revision 1.16
> diff -u -r1.15 -r1.16
> --- checkout-cmd.c 2001/03/16 00:43:04 1.15
> +++ checkout-cmd.c 2001/03/16 04:02:50 1.16
> @@ -38,7 +38,6 @@
> void *trace_edit_baton;
> svn_error_t *err;
> int i;
> - svn_string_t *local_dir;
>
> /* TODO Fixme: This only works for one repo checkout at a shot. In
> CVS, when we checkout one project and give it a destination
> @@ -80,21 +79,20 @@
> (args->nelts == 1) or (args->nelts > 1). -Fitz
>
> */
> -
> - /* Ensure that we have a default dir to checkout into. */
> - if (! opt_state->target)
> - local_dir = svn_path_last_component (repos_url,
> - svn_path_local_style,
> - pool);
> - else
> - local_dir = opt_state->target;
> -
> - /* Check out all requested URLs. */
> for (i = 0; i < opt_state->args->nelts; i++)
> {
> + svn_string_t *local_dir;
> svn_string_t *repos_url
> = ((svn_string_t **) (opt_state->args->elts))[0];
>
> + /* Ensure that we have a default dir to checkout into. */
> + if (! opt_state->target)
> + local_dir = svn_path_last_component (repos_url,
> + svn_path_local_style,
> + pool);
> + else
> + local_dir = opt_state->target;
> +
> err = svn_cl__get_trace_update_editor (&trace_editor,
> &trace_edit_baton,
> local_dir,
> @@ -112,8 +110,8 @@
> pool);
> if (err)
> return err;
> +
> }
> -
> return SVN_NO_ERROR;
> }
>
>
>
>
Received on Sat Oct 21 14:36:26 2006

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.