You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@gmail.com> on 2009/10/31 11:33:03 UTC

Re: svn commit: r40316 - in trunk/subversion: include/private libsvn_client libsvn_wc

On Fri, Oct 30, 2009 at 11:50, Paul T. Burba <pb...@collab.net> wrote:
>...
> +++ trunk/subversion/libsvn_wc/node.c   Fri Oct 30 08:50:57 2009        (r40316)
> @@ -624,3 +624,25 @@ svn_wc__node_get_base_rev(svn_revnum_t *
>
>   return SVN_NO_ERROR;
>  }
> +
> +svn_error_t *
> +svn_wc__node_get_lock_token(const char **lock_token,
> +                            svn_wc_context_t *wc_ctx,
> +                            const char *local_abspath,
> +                            apr_pool_t *result_pool,
> +                            apr_pool_t *scratch_pool)
> +{
> +  svn_wc__db_status_t status;
> +  svn_wc__db_lock_t *lock;
> +
> +  SVN_ERR(svn_wc__db_read_info(&status,
> +                               NULL, NULL, NULL, NULL, NULL, NULL, NULL,

Why fetch status?

>...

Cheers,
-g

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2413213

Re: svn commit: r40316 - in trunk/subversion: include/private libsvn_client libsvn_wc

Posted by Paul Burba <pt...@gmail.com>.
On Sat, Oct 31, 2009 at 6:33 AM, Greg Stein <gs...@gmail.com> wrote:
> On Fri, Oct 30, 2009 at 11:50, Paul T. Burba <pb...@collab.net> wrote:
>>...
>> +++ trunk/subversion/libsvn_wc/node.c   Fri Oct 30 08:50:57 2009        (r40316)
>> @@ -624,3 +624,25 @@ svn_wc__node_get_base_rev(svn_revnum_t *
>>
>>   return SVN_NO_ERROR;
>>  }
>> +
>> +svn_error_t *
>> +svn_wc__node_get_lock_token(const char **lock_token,
>> +                            svn_wc_context_t *wc_ctx,
>> +                            const char *local_abspath,
>> +                            apr_pool_t *result_pool,
>> +                            apr_pool_t *scratch_pool)
>> +{
>> +  svn_wc__db_status_t status;
>> +  svn_wc__db_lock_t *lock;
>> +
>> +  SVN_ERR(svn_wc__db_read_info(&status,
>> +                               NULL, NULL, NULL, NULL, NULL, NULL, NULL,
>
> Why fetch status?

Accidentally left that in there when I was debugging, removed r40351.

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2413822