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

Re: svn commit: r35145 - in trunk/subversion: libsvn_client tests/cmdline

From: Greg Stein <gstein_at_gmail.com>
Date: Sun, 11 Jan 2009 06:43:51 -0800

On Sun, Jan 11, 2009 at 06:06, Bert Huijben <rhuijben_at_sharpsvn.net> wrote:
>...
> +++ trunk/subversion/libsvn_client/add.c Sun Jan 11 06:06:31 2009 (r35145)
> @@ -467,18 +467,23 @@ add_parent_dirs(const char *path,
>
> if (err && err->apr_err == SVN_ERR_WC_NOT_DIRECTORY)
> {
> + svn_error_clear(err);
> if (svn_dirent_is_root(path, strlen(path)))
> {
> - svn_error_clear(err);
> -
> return svn_error_create
> (SVN_ERR_CLIENT_NO_VERSIONED_PARENT, NULL, NULL);
> }
> + else if(svn_wc_is_adm_dir(svn_dirent_basename(path, pool), pool))

"if" is not a function. there should be a space in there.

>...

Cheers,
-g
Received on 2009-01-11 15:44:07 CET

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.