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

View: New views
2 Messages — Rating Filter:   Alert me  

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

by Greg Stein-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, Oct 30, 2009 at 11:50, Paul T. Burba <pburba@...> 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

by Paul Burba-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Sat, Oct 31, 2009 at 6:33 AM, Greg Stein <gstein@...> wrote:

> On Fri, Oct 30, 2009 at 11:50, Paul T. Burba <pburba@...> 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