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

Re: svn commit: r1476563 - /subversion/trunk/subversion/svnserve/serve.c

From: Daniel Shahaf <danielsh_at_elego.de>
Date: Sat, 27 Apr 2013 17:36:03 +0300

That's wrong since 'B' may return SVN_RA_SVN__UNSPECIFIED_NUMBER. In
fact, you reverted r1466659 which was a bugfix.

brane_at_apache.org wrote on Sat, Apr 27, 2013 at 12:28:44 -0000:
> Author: brane
> Date: Sat Apr 27 12:28:44 2013
> New Revision: 1476563
>
> URL: http://svn.apache.org/r1476563
> Log:
> * subversion/svnserve/serve.c (update): Silence a warning about conversion
> of apr_uint64_t to svn_boolean_t by explicitly making the argument to
> svn_log__update a boolean expression.
> (update, switch_cmd): Incidentally, replace the cases where we had
> checks like this: "variable == TRUE" to "variable != FALSE" instead,
> since the latter is more robust given C's truth-value rules.
>
> Modified:
> subversion/trunk/subversion/svnserve/serve.c
>
> Modified: subversion/trunk/subversion/svnserve/serve.c
> URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnserve/serve.c?rev=1476563&r1=1476562&r2=1476563&view=diff
> ==============================================================================
> --- subversion/trunk/subversion/svnserve/serve.c (original)
> +++ subversion/trunk/subversion/svnserve/serve.c Sat Apr 27 12:28:44 2013
> @@ -1843,8 +1843,8 @@ static svn_error_t *update(svn_ra_svn_co
> SVN_ERR(accept_report(&is_checkout, NULL,
> conn, pool, b, rev, target, NULL, TRUE,
> depth,
> - (send_copyfrom_args == TRUE) /* send_copyfrom_args */,
> - (ignore_ancestry == TRUE) /* ignore_ancestry */));
> + (send_copyfrom_args != FALSE), /* send_copyfrom_args */
> + (ignore_ancestry != FALSE))); /* ignore_ancestry */
> if (is_checkout)
> {
> SVN_ERR(log_command(b, conn, pool, "%s",
> @@ -1855,7 +1855,8 @@ static svn_error_t *update(svn_ra_svn_co
> {
> SVN_ERR(log_command(b, conn, pool, "%s",
> svn_log__update(full_path, rev, depth,
> - send_copyfrom_args, pool)));
> + (send_copyfrom_args != FALSE),
> + pool)));
> }
>
> return SVN_NO_ERROR;
> @@ -1905,7 +1906,7 @@ static svn_error_t *switch_cmd(svn_ra_sv
> return accept_report(NULL, NULL,
> conn, pool, b, rev, target, switch_path, TRUE,
> depth,
> - (send_copyfrom_args == TRUE) /* send_copyfrom_args */,
> + (send_copyfrom_args != FALSE) /* send_copyfrom_args */,
> (ignore_ancestry != FALSE) /* ignore_ancestry */);
> }
>
>
>
Received on 2013-04-27 16:36:42 CEST

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.