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 2010/03/25 02:29:29 UTC

Re: svn commit: r927176 - in /subversion/trunk/subversion/libsvn_wc: lock.c lock.h

On Wed, Mar 24, 2010 at 16:42,  <hw...@apache.org> wrote:
>...
> +++ subversion/trunk/subversion/libsvn_wc/lock.c Wed Mar 24 20:42:22 2010
> @@ -1595,17 +1595,6 @@ extend_lock_cb(const char *local_abspath
>  }
>
>  svn_error_t *
> -svn_wc__adm_extend_lock_to_tree(svn_wc__db_t *db,
> -                                const char *adm_abspath,
> -                                apr_pool_t *pool)
> -{
> -  return svn_error_return(
> -      svn_wc__internal_walk_children(db, adm_abspath, FALSE,
> -                                     extend_lock_cb, db, svn_depth_infinity,
> -                                     NULL, NULL, pool));

Don't you want to remove extend_lock_cb(), too? :-P

>...

Cheers,
-g

Re: svn commit: r927176 - in /subversion/trunk/subversion/libsvn_wc: lock.c lock.h

Posted by "Hyrum K. Wright" <hy...@mail.utexas.edu>.
On Mar 24, 2010, at 10:29 PM, Greg Stein wrote:

> On Wed, Mar 24, 2010 at 16:42,  <hw...@apache.org> wrote:
>> ...
>> +++ subversion/trunk/subversion/libsvn_wc/lock.c Wed Mar 24 20:42:22 2010
>> @@ -1595,17 +1595,6 @@ extend_lock_cb(const char *local_abspath
>>  }
>> 
>>  svn_error_t *
>> -svn_wc__adm_extend_lock_to_tree(svn_wc__db_t *db,
>> -                                const char *adm_abspath,
>> -                                apr_pool_t *pool)
>> -{
>> -  return svn_error_return(
>> -      svn_wc__internal_walk_children(db, adm_abspath, FALSE,
>> -                                     extend_lock_cb, db, svn_depth_infinity,
>> -                                     NULL, NULL, pool));
> 
> Don't you want to remove extend_lock_cb(), too? :-P

I was distracted at the time I committed this. :)

r927258.

-Hyrum