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 2012/05/12 05:39:27 UTC

Re: svn commit: r1337394 - in /subversion/trunk/subversion: libsvn_client/commit_util.c tests/cmdline/lock_tests.py

On Fri, May 11, 2012 at 6:06 PM,  <rh...@apache.org> wrote:
>...
> +++ subversion/trunk/subversion/libsvn_client/commit_util.c Fri May 11 22:06:19 2012
> @@ -616,7 +616,8 @@ harvest_status_callback(void *status_bat
>       case svn_wc_status_none:
>         return SVN_NO_ERROR;
>       case svn_wc_status_normal:
> -        if (!copy_mode && !status->conflicted)
> +        if (!copy_mode && !status->conflicted
> +            && !(just_locked && status->lock))
>           return SVN_NO_ERROR;
>         break;

Again: some commentary right here would be wonderful. We don't want to
use a log message to indicate what is going on here.

>...

Cheers,
-g